:root {
    --main-color: #DB7EA2;
    --sub-color: #F54E26;
    --bg-color: #F9F9F9;
    --black-color: #3A3A3A;
    --sub-txt-color-01: #555555;
    --sub-txt-color-02: #777777;
    --sub-txt-color-03: #999999;
    --border-color: #EEEEEE;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--main-color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
  overflow: hidden;
  overflow-y: auto;
}

/*button*/
.btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.btn-wrap.flex-col {
    flex-direction: column;
}
.solid-btn {
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--main-color);
    font-size: 14px;
    color: var(--main-color);
}
.solid-btn:hover {
    background-color: #fffafc;
}
.lg-mc-btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 3px;
}
.lg-mc-btn.txt-sm {
    font-size: 14px;
}
.lg-mc-btn.mw-350 {
    max-width: 350px;
}
.lg-mc-btn.xs {
    max-width: 150px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}
.lg-mc-btn:hover {
    opacity: .9;
}
.lg-solid-btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid var(--black-color);
}
.lg-solid-btn.txt-sm {
    font-size: 14px;
}
.lg-solid-btn.mw-350 {
    max-width: 350px;
}
.lg-solid-btn.xs {
    max-width: 150px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}
.lg-solid-btn:hover {
    background-color: var(--bg-color);
}
.basic-btn {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 3px;
    margin-top: 24px;
}
.basic-btn:hover {
    opacity: .8;
}
.basic-btn.mt-0 {
    margin-top: 0;
}
.black-btn {
    width: 100%;
    max-width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--black-color);
    border-radius: 3px;
}
.black-btn:hover {
    opacity: .8;
}
/*모달*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 102;
  display: none;
}
.modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
}
.modal .modal-box.terms {
    max-width: 1200px;
}
.modal .modal-box .modal-tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background-color: var(--black-color);
}
.modal .modal-box .modal-tit-box span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.modal .modal-box .modal-tit-box button {
  display: inline-block;
}
.modal .modal-box .modal-tit-box img {
  width: 24px;
  height: 24px;
}
.modal .modal-box .content {
  height: auto;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal .modal-box .content .terms-content {
    font-size: 14px;
    line-height: 1.3;
    color: var(--sub-txt-color-02);
    height: 100%;
    min-height: 300px;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}
.modal .modal-box .content > label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
}
.modal .modal-box .content > label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.modal .modal-box .content > label span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.modal .modal-box .content .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal .modal-box .content .item input[type="text"] {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.modal .modal-box .content .item > p {
    font-weight: 500;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
}
.modal .modal-box .content .item .n-editor {
    width: 100%;
    min-height: 150px;
    border: 1px solid var(--border-color);
    padding: 16px;
    font-size: 14px;
}

/*공통*/
.wrap {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 36px;
}
.sm-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.md-wrap {
    width: 100%;
    max-width: 700px;
    margin: 0 auto; 
}
.xs-wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.bg-wrap {
    width: 100%;
    padding: 130px 0;
    background-color: var(--bg-color);
}

.top-btn {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.top-btn img {
    width: 20px;
    height: 20px;
}


/*header*/
.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
    position: relative;
    display: block;
    width: 42px;
    height: 26px;
    cursor: pointer;
    z-index: 10;
}
#ham_btn + label > span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black-color);
    border-radius: 5px;
    transition: all 300ms;
}
.header-wrap.main #ham_btn + label > span {
    background-color: #fff;
}
.header-wrap.on #ham_btn + label > span {
    background-color: var(--black-color);
}
.header-wrap:hover #ham_btn + label > span {
    background-color: var(--black-color);
}
#ham_btn:checked + label > span:nth-child(1) {
    top: 50%;
    transform: translate(0, -50%);
    transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}
#ham_btn:checked + label > span:nth-child(2) {
    opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
    bottom: 0;
    background-color: var(--main-color) !important;
}
#ham_btn:checked + label > span:nth-child(3) {
    top: 50%;
    transform: translate(0, -50%);
    transform: rotate(-45deg);
}
.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    width: 100%;
    height: 85px;
    transition: all .2s linear;
}
.header-wrap.on {
    background-color: #fff;
    transition: all .2s linear;
}
.header-area {
    width: 100%;
    max-width: 1520px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.header-area .h-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 218px;
    height: 40px;
    background-image: url('../images/logo/logo_bc_nt.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.header-wrap.main .header-area .h-logo {
    background-image: url('../images/logo/logo_wc_nt.png');
}
.header-wrap.on .header-area .h-logo {
    background-image: url('../images/logo/logo_bc_nt.png');
}
.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
}
.container ul {
    display: flex;
    align-items: center;
    gap: 48px;
}
.container ul li {
  position: relative;
}
.container ul li::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: .2s ease-in-out;
}
.container ul li:hover::after {
    width: 100%;
    transition: .2s ease-in-out;
}
.container ul li a {
    font-weight: 500;
    color: var(--black-color);
}
.header-wrap.main .container ul li a {
    color: #fff;
}
.header-wrap.on .container ul li a {
    color: var(--black-color);
}

/*footer*/
footer {
    background-color: var(--black-color);
}
.f-logo {
  height: 40px;
}
.f-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-wrap {
    padding: 100px 0;
}
.footer-wrap .tp {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fnb {
    display: flex;
    align-items: center;
    gap: 48px;
}
.fnb li a {
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}

.footer-wrap .bt {
    display: flex;
    justify-content: space-between;
}
.footer-wrap .bt .lt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.footer-wrap .bt .lt .info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}
.footer-wrap .bt .lt .info span {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    display: inline-block;
}
.footer-wrap .bt .lt .copy {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    display: inline-block;
}
.footer-wrap .bt .rt {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-wrap .bt .rt .cs-circle {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 10px 24px;
    border: 1px solid #fff;
    border-radius: 100px;
}
.footer-wrap .bt .rt .cs-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-wrap .bt .rt .cs-info p {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    display: inline-block;
    text-align: right;
}
.footer-wrap .bt .rt .cs-info a {
    text-align: right;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

/*메인*/
.main-banner {
    width: 100vw;
    height: 100vh;
    position: relative;
    margin-bottom: 130px;
}

.banner-slider {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.banner-slider .swiper-slide {
    height: 100%;
}
.banner-slider .img-box {
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-slider .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-slider .img-box img.mobile {
    display: none;
}

/*Scorll Down*/
.scroll-downs {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-downs p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 300;
}
.mousey {
  width: 2px;
  padding: 2px 6px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  opacity: 0.75;
  box-sizing: content-box;
  margin: 0 auto 8px;
}
.scroller {
  width: 2px;
  height: 6px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0;}
}

.pager {
    min-width: 53px;
    display: inline-block;
    width: max-content;
    position: absolute;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
}
.swiper-pagination-total {
    color: #ddd;
}

.main-product {
    padding-bottom: 130px;
}
.main-tit {
    font-size: 32px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 36px;
}
.product-slider {
  width: 100%;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 60px;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.product-item .img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s ease-in-out;
}
.product-item:hover .img-box img {
    scale: 1.1;
    transition: .2s ease-in-out;
}
.product-item .txt {
  display: flex;
  flex-direction: column;
}
.product-item .txt .name {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 12px;
}
.product-item .txt .expl {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 16px;
}
.product-item .txt .num-box {
    display: flex;
    gap: 8px;
}
.product-item .txt .num-box .sale {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-color);
}
.product-item .txt .num-box .price {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}
.product-slider .swiper-scrollbar {
	height: 2px !important;
    background: var(--border-color);
    width: 100%;
    top: unset;
    left: unset;
    bottom: unset;
    right: unset;
}

.product-slider .swiper-scrollbar-drag {
	height: 2px;
    background: var(--main-color);
}

.product-empty {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 48px 0;
    text-align: center;
}


.review-slider {
    overflow: hidden;
    position: relative;
    padding-bottom: 48px;
    margin-bottom: 60px;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  background-color: #fff;
}
.review-item .img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.review-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s ease-in-out;
}
.review-item:hover .img-box img {
    scale: 1.1;
    transition: .2s ease-in-out;
}
.review-item .txt {
  display: flex;
  flex-direction: column;
  padding: 0 12px 12px;
}
.review-item .txt .name {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    margin-bottom: 12px;
}
.review-item .txt .content {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 16px;
}
.review-item .txt .info {
    display: flex;
}
.review-item .txt .info .nn {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.review-item .txt .info .nn::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    display: inline-block;
    margin: 0 12px;
}
.swiper-pagination {
    top: unset !important;
    left: 50% !important;
    bottom: 24px !important;
    transform: translateX(-50%) !important;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  background-color: var(--border-color);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--main-color);
}

/*페이지*/
.page-tit {
    margin: 200px 0 60px;
    padding-bottom: 16px;
    font-size: 38px;
    font-weight: 600;
    color: var(--black-color);
    text-align: center;
    position: relative;
}
.page-tit.st {
    margin: 100px 0 24px;
}
.page-tit::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg,rgba(219, 126, 162, 1) 0%, rgba(83, 136, 219, 1) 100%);
}
.lg-expl {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    text-align: center;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 4px;
}

/*Pagination*/
.pagination {
  position: relative;
  margin-top: 48px;
}
.pagination.gap {
    margin: 48px 0 150px;
}
.pagination.board {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination.mt-60 {
  margin-top: 60px;
}
.pagination.mt-24 {
  margin-top: 24px;
}
.pagination.mt-12 {
  margin-top: 12px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 28px;
  height: 28px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color-02);
}
.pagination li a:not(.arrow):hover {
  color: var(--main-color);
  text-decoration: underline;
}
.pagination li.on {
  color: var(--main-color) !important;
  text-decoration: underline;
}
.pagination li.on a {
  color: var(--main-color) !important;
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}

.view-area {
    margin: 160px 0 150px;
}

.product-tp {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
}
.product-tp .lt {
    width: 500px;
}
.product-tp .rt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.product-tp .rt .rt-tit {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-tp .rt .rt-tit p:first-child {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
}
.product-tp .rt .rt-tit p:nth-child(2) {
    font-weight: 500;
    color: var(--main-color);
    line-height: 1.3;
}
.rt-price {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rt-price .item {
    display: flex;
    justify-content: space-between;
}
.rt-price .item .pa {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rt-price .item .pa span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    min-width: 80px;
    display: inline-block;
}
.rt-price .item .pa span:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
}
.rt-price .item .pa span:nth-child(2).hp {
    text-decoration: line-through;
    color: var(--sub-txt-color-03);
}
.rt-price .item .pa span:nth-child(2) b {
    font-size: 14px;
    color: var(--black-color);
}
.rt-price .item .pa span:nth-child(2).hp b {
    color: var(--sub-txt-color-03);
}
.rt-price .item .pa span:nth-child(2) .sale {
    color: var(--sub-color);
    margin-left: 12px;
}
.rt-price .item .pa span:nth-child(2).mc-txt {
    color: var(--main-color);
}
.rt-price .item .cp-download {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -1px;
    border-radius: 3px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--black-color);
}
.rt-price .item .cp-download img {
    width: 12px;
}

.rt-option {
    padding: 24px 0;
    border-top: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rt-option .item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rt-option .item span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    min-width: 80px;
    display: inline-block;
}
.rt-option .item .shipping-expl {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02)
}
.rt-option .item select {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
}
.rt-cnt {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-color);
}
.rt-cnt > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 16px;
}
.rt-cnt .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rt-cnt .box .cnt-box {
    display: flex;
    align-items: center;
    gap: 4px;
}
.rt-cnt .box .cnt-box input {
    width: 100px;
    height: 30px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.rt-cnt .box .cnt-box input[type="number"] {
  -moz-appearance: textfield;
}
.rt-cnt .box .cnt-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.rt-cnt .box .cnt-box input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.rt-cnt .box .cnt-box .cnt-btn {
    display: flex;
    flex-direction: column;
    padding-bottom: 1px;
}
.rt-cnt .box .cnt-box .cnt-btn button {
    border: 1px solid var(--black-color);
    width: 20px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rt-cnt .box .cnt-box .cnt-btn button img {
    width: 8px;
    height: 5px;
}
.rt-cnt .box .cnt-box .cnt-btn button:first-child {
    border-radius: 3px 3px 0 0;
    margin-bottom: -1px;
}
.rt-cnt .box .cnt-box .cnt-btn button:nth-child(2) {
    border-radius: 0 0 3px 3px;
}
.rt-cnt .box .member-price {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rt-cnt .box .member-price span {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    display: inline-block;
}
.rt-cnt .box .member-price span font {
    font-size: 14px;
    font-weight: 400;
}
.rt-cnt .box .member-price button {
    width: 14px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
}
.rt-cnt .box .member-price button img {
    width: 11px;
}
.result-price {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.result-price .item {
    display: flex;
    justify-content: space-between !important;
}
.result-price .item span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    min-width: 80px;
    display: inline-block; 
}
.result-price .item span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.result-price .item:nth-child(2) {
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border-color);
}
.result-price .item span:nth-child(2) b {
    font-weight: 600;
}
.result-price .item:nth-child(3) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.result-price > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    text-align: right;
}
.result-price > p b {
    color: var(--sub-color);
}


.post-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
}
.post-slider .swiper-slide {
    width: 100%;
}
.post-slider .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.post-slider .swiper-slide .img-box a {
    width: 100%;
    height: 100%;
    display: block;
}
.post-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-slider {
    width: 100%;
}
.thumbnail-slider .swiper-slide {
    width: 100%;
    cursor: pointer;
}
.thumbnail-slider .swiper-slide .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.thumbnail-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-bt {
    position: relative;
}
.product-bt .tab-menu {
    display: flex;
    margin-bottom: 60px;
    position: sticky;
    top: 85px;
    left: 0;
}
.product-bt .tab-menu button, .product-bt .tab-menu a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bg-color);
    margin-left: -1px;
    border: 1px solid var(--border-color);
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.product-bt .tab-menu button.on, .product-bt .tab-menu a.on {
    background-color: #fff;
    color: var(--black-color);
    border-bottom: 3px solid var(--main-color);
} 
.product-bt .product-content .editor-area {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.product-bt .product-content {
    display: none;
}
.product-bt .product-content.on {
    display: block;
}
.product-bt .product-content .product-expl-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.product-expl-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.product-expl-table table th {
    background-color: var(--bg-color);
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
}
.product-expl-table table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}


.product-review .tp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    padding: 24px;
}
.product-review .tp p:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.product-review .tp p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.product-review .tp p:nth-child(3) {
    margin: 4px 0;
}
.product-review .tp button {
    border-radius: 3px;
    background-color: var(--black-color);
    padding: 6px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.product-review .tp button:hover {
    opacity: .8;
}

.review-list li {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}
.review-list li .img-box {
    width: 100px;
    min-width: 100px;
    height: 100px;
}
.review-list li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-list li .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review-list li .content .txt {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-list li .content img {
    max-width: 200px !important;
}
.review-list li .content .txt p:first-child {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.review-list li .content .txt p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
}
.review-list li .content .txt > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
}
.review-list li .content .info {
    display: flex;
    align-items: center;
}
.review-list li .content .info span {
    font-size: 13px;
    color: var(--sub-txt-color-03);
    display: flex;
    align-items: center;
    gap: 4px;
}
.review-list li .content .info span:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    display: inline-block;
    margin: 0 12px 0 8px;

}
.review-list li .content .info button {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.review-list li .content .info button:hover {
    background-color: var(--bg-color);
}
.star-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.star-grid label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}
.star-grid label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.star-grid label span {
    display: inline-block;
    min-width: 45px;
    font-size: 13px;
    color: var(--sub-txt-color-02);
}

.support-area .write-box {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}
.support-area .write-box button {
    border-radius: 3px;
    background-color: var(--black-color);
    padding: 6px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.support-area .write-box button:hover {
    opacity: .8;
}


.support-list {
    border-top: 2px solid var(--black-color);
}
.support-list > li {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
}
.support-list > li.empty {
    align-items: center;
    padding: 48px 24px;
}
.support-list > li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.support-list > li .tit-box {
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.support-list > li .tit-box .box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.support-list > li .tit-box .cate {
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 4px;
}
.support-list > li .tit-box .cate span {
    font-size: 13px;
    font-weight: 500;
    padding: 6px;
    border-radius: 3px;
    white-space: nowrap;
    display: inline-block;
}
.support-list > li .tit-box .cate span.wait {
    background-color: #fff;
    color: var(--black-color);
    border: 1px solid var(--black-color);
}
.support-list > li .tit-box .cate span.end {
    background-color: var(--black-color);
    color: #fff;
}
.support-list > li .tit-box .tit {
    width: 100%;
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
}
.support-list > li .tit-box .tit img {
    width: 16px;
}
.support-list > li .faq-arrow {
    width: 28px;
    margin-right: 24px;
    transition: .2s ease-in-out;
}
.support-list > li .faq-arrow.active {
    transform: rotate(90deg);
    transition: .2s ease-in-out;
}
.support-list > li .toggle-content {
    background-color: var(--bg-color);
    padding: 24px;
    line-height: 1.5;
    color: var(--sub-txt-color-02);
    display: none;
}
.support-list > li .toggle-content .qa {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.support-list > li .toggle-content .qa .item:first-child {
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--border-color);
}
.support-list > li .toggle-content .qa .item p {
    font-size: 14px !important;
}
.support-list > li .toggle-content .qa .item p:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 8px;
}
.support-list > li .toggle-content .qa .item p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}


.support-list > li .tit-box .info {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.support-list > li .tit-box .info span {
    font-size: 13px;
    color: var(--sub-txt-color-03);
    display: flex;
    align-items: center;
    gap: 4px;
}
.support-list > li .tit-box .info span:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    display: inline-block;
    margin: 0 12px 0 8px;

}
.support-list > li .tit-box .info button {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.support-list > li .tit-box .info button:hover {
    background-color: var(--bg-color);
}

.brand .intro-banner {
    width: 100%;
    aspect-ratio: 5 / 2;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.brand .intro-banner .img-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.brand .intro-banner .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.brand .intro-banner .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand .intro-banner .txt {
    width: 100%;
    padding: 0 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.brand .intro-banner .txt p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.brand .intro-banner .txt p:nth-child(2) {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

.brand .intro-txt {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 130px 0 0;
}
.brand .intro-txt .img-box {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}
.brand .intro-txt .img-box::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background-color: var(--black-color);
    position: absolute;
    left: 50%;
    bottom: -48px;
    transform: translateX(-50%);
}
.brand .intro-txt .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand .intro-txt .txt {
    white-space: pre-line;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.5;
}

.brand-product {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.brand-product .item {
    display: flex;
    align-items: center;
    gap: 100px;
}
.brand-product .item.reverse {
    flex-direction: row-reverse;
}
.brand-product .item .img-box {
    width: 50%;
    aspect-ratio: 1 / 1;
}
.brand-product .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-product .item .txt {
    width: 50%;
}
.brand-product .item .txt .tit {
    font-size: 38px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1.2;
    margin-bottom: 24px;
}
.brand-product .item .txt .txt-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}
.brand-product .item .txt .txt-item p {
    color: var(--sub-txt-color-02);
    line-height: 1.5;
    word-break: keep-all;
}

.auth-area {
    margin-bottom: 150px;
}
.auth-area .auth-tab {
    width: 100%;
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 60px;
}
.auth-area .auth-tab a {
    width: 100%;
    padding-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color-03);
    display: inline-block;
    text-align: center;
}
.auth-area .auth-tab a.on {
    color: var(--black-color);
    border-bottom: 3px solid var(--black-color);
    padding-bottom: 14px;
}
.auth-area .expl-txt {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    text-align: center;
    margin-bottom: 36px;
}
.auth-area .box {
    padding: 48px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.auth-area .box p {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    margin-bottom: 8px;
}
.auth-area .box input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
}
.auth-area .box button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 3px;
    margin-top: 24px;
}
.auth-area .box button:hover {
    opacity: 0.8;
}
.auth-area .auth-expl {
    background-color: var(--bg-color);
    border-radius: 3px;
    padding: 16px 16px 16px 36px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.auth-area .auth-expl li {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    list-style: disc;
}

.auth-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
    table-layout: fixed;
}
.auth-table table th {
    background-color: var(--bg-color);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
    vertical-align: middle;
    text-align: center;
}
.auth-table table td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    vertical-align: middle;
    text-align: center;
}


.studio-area {
    margin-bottom: 150px;
}
.studio-area .map-box {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}
.root_daum_roughmap .wrap_controllers {
    display: none;
}
.root_daum_roughmap {
    width: 100% !important;
}
.root_daum_roughmap .wrap_map {
    height: 500px !important;
}
.search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 50px;
    margin-bottom: 36px;
}
.search select {
    width: 150px;
    height: 100%;
    border: none;
    border-bottom: 1px solid var(--black-color);
    padding: 0 16px;
    font-size: 14px;
    color: var(--sub-txt-color-02);
    border-radius: 0px;
}
.search .rt {
    width: 100%;
    max-width: 350px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--black-color);
    padding: 16px;
}
.search .rt input {
    width: 100%;
    border: none;
    font-size: 14px;
    color: var(--sub-txt-color-02);
    padding: 0;
}
.search .rt button {
    display: flex;
    align-items: center;
    justify-content: center;
}
.search .rt button img {
   width: 20px; 
}

.studio-list table {
    width: 100%;
    border-top: 3px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.studio-list table tr {
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}
.studio-list table td {
    padding: 24px 16px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
}
.studio-list table td .box {
    display: flex;
    align-items: center;
    gap: 8px;
}
.studio-list table td .box img {
    width: 20px;
}
.studio-list table td .box span {
    font-weight: 400;
    color: var(--sub-txt-color-02);
}

.login-area {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 150px;
}
.login-area > label {
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.login-area > input[type="checkbox"] {
    margin: 0;
    width: 13px;
    height: 13px;
}
.input-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 16px;
}

.input-db {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.input-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.input-box > span {
    padding: 12px 0;
    display: inline-block;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    margin-top: 6px;
}
.input-box > a {
    padding: 12px 0;
    display: inline-block;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    margin-top: 6px;
}
.input-box > img {
	max-width: 150px;
	border: 1px solid var(--border-color);
	padding: 24px;
}
.input-box > textarea {
	padding: 16px;
	border: 1px solid var(--border-color);
	border-radius: 3px;
	height: 100px;
}
.input-box > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.input-box > p span {
    color: var(--sub-color);
}
.input-box > p.st::after {
    content: "*";
    display: inline-block;
    color: var(--sub-color);
    margin-left: 4px;
}
.input-box input[type="text"], .input-box input[type="password"], .input-box input[type="email"], select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.input-box input[type="text"]:focus, .input-box input[type="password"]:focus, .input-box input[type="email"]:focus, select:focus {
    border: 1px solid var(--main-color);
}
.input-box input[type="file"]:read-only {
	padding: 16px;
}
.input-box input:read-only {
    background-color: var(--bg-color);
}
.find-go {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}
.register-go {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.register-go a {
    color: var(--main-color);
    text-decoration: underline;
}

.terms-area {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 150px;
}
.terms-expl {
    padding: 24px;
    background-color: var(--bg-color);
    border-radius: 3px;
    list-style-type: disc;
    padding-left: 48px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.terms-expl.mb-0 {
    margin-bottom: 0;
}
.terms-expl li {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: keep-all;
}
.terms-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}
.terms-item > p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
    margin-bottom: 12px;
}
.terms-item .content {
    padding: 24px;
    line-height: 1.3;
    background-color: var(--bg-color);
    border-radius: 3px;
    height: 150px;
    overflow: hidden;
    overflow-y: auto;
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.terms-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 6px;
}
.terms-item label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.terms-item label span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}

.all-agree {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: var(--bg-color);
    padding: 24px;
    margin-bottom: 24px;
}
.all-agree span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.all-agree span::before {
    display: inline-block;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--sub-txt-color-03);
    margin-right: 4px;
}
.all-agree input {
    width: 16px;
    height: 16px;
    background-color: var(--bg-color);
    padding: 24px;
}

.add-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.done-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-color);
    padding: 48px;
    border-radius: 3px;
    margin-bottom: 24px;
}
.done-box > img {
    width: 180px;
    margin-bottom: 24px;
}
.done-box p {
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
    text-align: center;
}

.mypage-tab {
    display: flex;
    margin-bottom: 60px;
    position: sticky;
    top: 85px;
    left: 0;
}
.mypage-tab button, .mypage-tab a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bg-color);
    margin-left: -1px;
    border: 1px solid var(--border-color);
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.mypage-tab button.on, .mypage-tab a.on {
    background-color: #fff;
    color: var(--black-color);
    border-bottom: 3px solid var(--main-color);
} 

.order-history {
    margin-bottom: 150px;
}
.order-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.order-table table th {
    vertical-align: middle;
    background-color: var(--bg-color);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
}
.order-table table th .order-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    cursor: pointer;
}
.order-table table th .order-type img {
    width: 16px;
}
.order-table table input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: 0;
}
.order-table table td {
    vertical-align: middle;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.order-table table td a {
    font-weight: 500;
    color: var(--black-color);
}
.order-table table td a:hover {
    text-decoration: underline;
}
.badge {
    display: inline-block;
    border-radius: 3px;
    padding: 4px 5px;
    font-size: 13px;
    font-weight: 500;
}
.badge.status-01 {
    color: #2D6712;
    background-color: #B0D29F;
}
.badge.status-02 {
    color: #fff;
    background-color: #6DA752;
}
.badge.status-03 {
    color: #fff;
    background-color: #689CD6;
}
.badge.status-04 {
    color: #0F57A7;
    background-color: #90BCEB;
}
.badge.status-05 {
    color: #F2095A;
    background-color: #FFD9D8;
}
.badge.status-06 {
    color: #fff;
    background-color: #F00B5D;
}
.ballon {
    display: none;
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: calc(100% + 12px);
    background: rgba(0, 0, 0, 0.8);
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: left;
    border-radius: 4px;
    padding: 12px;
    white-space: nowrap;
}
.ballon::after {
    border-top: 6px solid rgba(0, 0, 0, 0.8);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    bottom: -5px;
    right: 48px;
}
.ballon .ballon-item {
    display: flex;
    gap: 16px;
}
.ballon .ballon-item:not(:last-child) {
    margin-bottom: 6px;
}
.ballon .ballon-item span:first-child {
    font-weight: 500;
}
.order-table table th .order-type:hover .ballon {
    display: block;
}

.order-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.order-box .img-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    aspect-ratio: 1 / 1;
}
.order-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-box .txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.order-box .txt p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
    text-align: left;
}
.order-box .txt .option {
    display: flex;
    align-items: center;
    gap: 4px;
}
.order-box .txt .option span:first-child {
    border-radius: 3px;
    padding: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    background-color: var(--black-color);
    display: inline-block;
    border-radius: 3px;
}
.order-box .txt .option span:nth-child(2) {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}

.order-dashboard {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}
.order-dashboard .lt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.order-dashboard .item {
    border: 1px solid var(--border-color);
}
.order-dashboard .item .tit {
    background-color: var(--black-color);
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.order-dashboard .item .cont {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.order-dashboard .item .cont .box {
    display: flex;
    gap: 24px;
}
.order-dashboard .item .cont .box.center {
    align-items: center;
}
.order-dashboard .item .cont .box span {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.order-dashboard .item .cont .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
    min-width: 70px;
}
.order-dashboard .item .cont .box span:first-child b {
    color: var(--sub-color);
}
.order-dashboard .item .cont .box input[type="text"] {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.order-dashboard .item .cont .box input[type="password"] {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.order-dashboard .item .cont .box textarea {
    width: 100%;
    height: 120px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    resize: none;
}
.order-dashboard .item .cont .box .arrv {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    width: 100%;
    padding: 16px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.order-dashboard .item .cont .box label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.order-dashboard .item .cont .box label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.order-dashboard .item .cont .box a {
    display: inline-block;
    background-color: var(--black-color);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    height: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    margin: 0 !important;
}
.order-dashboard .rt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-box {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}
.price-box .tp {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}
.price-box .tp .box {
    display: flex;
    justify-content: space-between;
}
.price-box .tp .box span {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.price-box .tp .box span b {
    color: var(--main-color);
}
.price-box .tp .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.price-box .bt .box {
    background-color: var(--bg-color);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
}
.price-box .bt .box:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.price-box .bt .box span {
    font-size: 13px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.3;
    position: relative;
}
.price-box .bt .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.sm-btn-wrap {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.sm-btn-wrap button {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.sm-btn-wrap button:hover {
    background-color: var(--bg-color);
}

.simple-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
}
.simple-info .item {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    margin-left: -1px;
}
.simple-info .item.bg {
    background-color: var(--bg-color);
}
.simple-info .item span {
    display: inline-block;
    color: var(--sub-txt-color-02);
}
.simple-info .item span b {
    font-weight: 500;
    color: var(--black-color);
}
.radio-item {
    width: 100%;
    display: flex;
    gap: 8px;
}
.radio-item label {
    cursor: pointer;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    outline: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 14px;
    color: var(--black-color);
}
.radio-item label img {
    width: 18px;
}
.radio-item input[type="radio"] {
    display: none;
}
.radio-item input[type="radio"]:checked + label {
outline: 1px solid var(--black-color);
}

.coupon-btn {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background-color: var(--black-color);
    padding: 5px 12px;
    border-radius: 3px;
    margin-left: 6px;
}
.coupon-list {
    display: none;
    background-color: #fff;
    position: absolute;
    bottom: 100%;
    right: 0;
    border: 1px solid var(--black-color);
    min-width: 400px;
}
.coupon-list .cp-tp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--black-color);
    padding: 12px 16px;
}
.coupon-list .cp-tp span {
    font-size: 14px !important;
    color: var(--black-color);
}
.coupon-list .cp-tp > img {
    width: 16px;
    cursor: pointer;
}


.coupon-list table {
    width: 100%;
    border-collapse: collapse !important;
    table-layout: fixed;
}
.coupon-list table th {
    background-color: var(--bg-color);
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--black-color);
    line-height: 1.3;
}
.coupon-list table td {
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.coupon-list table td button {
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 3px;
    border: 1px solid var(--black-color);
}
.coupon-list table td button:hover {
    background-color: var(--bg-color);
}

.marker-box {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 300;
    color: #fff;
}
.studio-map {
    width: 100%;
    height: 600px;
}

.auth-btn-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.auth-btn-wrap .black-btn {
    width: 100%;
    max-width: 100%;
}

.auth-input {
    display: flex;
    gap: 8px;
}
.captcha-info {
    padding: 16px;
    background-color: var(--bg-color);
    border-radius: 3px;
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    margin-bottom: 24px;
}


/*영카트*/
.new_win > h1 {
    background-color: var(--black-color);
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.new_win_con .sound_only {
    width: 100% !important;
    font-weight: 500;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
    margin-bottom: 12px;
}
.new_win_con .sound_only strong {
    display: none;
}
.new_win_con > ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
}
.new_win_con > ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.new_win_con > ul li input[type="text"] {
    width: 100%;
    height: 45px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
}

.win_btn {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 24px;
}
.win_btn button:first-child {
    width: 100%;
    max-width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 3px;
}
.win_btn button:nth-child(2) {
    width: 100%;
    max-width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid var(--black-color);
}
.chk_box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.chk_box > li {
    display: flex !important;
    align-items: center;
    flex-direction: row !important;
    margin-bottom: 8px;
}
.chk_box > li label {
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.chk_box > li input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0 4px 0 0;
    cursor: pointer;
}
.chk_box > li img {
    width: 80px !important;
    margin-left: 8px;
}
.chk_box > label {
    font-size: 14px;
    color: var(--sub-txt-color-02);
    position: absolute;
    bottom: 16px;
    left: 20px;
}
.chk_box input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 0 4px;
    cursor: pointer;
}
.form_left {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.form_left br {
    display: none;
}
.form_right {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.form_right br {
    display: none;
}
.frm_info {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    margin-top: 6px;
}

.bc-area {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.bc-area > div {
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
}
.bc-area h3 {
    width: 100% !important;
    font-weight: 500;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
    margin-bottom: 12px;   
} 

.tbl_head03 table {
    width: 100%;
    border-collapse: collapse !important;
    border-bottom: 1px solid #f6f6f6;
    margin-bottom: 24px;
}
.tbl_head03 thead th {
    padding: 20px 0;
    border-top: 2px solid #959da6;
    border-bottom: 1px solid #d3d3d3;
    color: #383838;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.1em;
}
.tbl_head03 td {
    background: #fff;
    background-clip: padding-box;
    vertical-align: middle;
    padding: 16px;
    border-top: 1px solid #ccd2d9;
    border-left: 1px solid #f6f6f6;
    line-height: 1.5em;
    word-break: break-all;
    font-size: 14px;
    color: var(--sub-txt-color-02);
    position: relative;
}
.tbl_head03 td.td_sbj {
    width: 155px;
    text-align: left;
}
.tbl_head03 td.td_sbj input[type="text"] {
    margin-left: 24px;
    height: 45px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.td_mng {
    width: 80px;
    text-align: center;
}
.tbl_head03 table .td_mng {
    width: 100px;
    padding: 10px;
}
.tbl_head03 table .mng_btn {
    width: 100%;
    margin: 2px 0;
    font-size: 12px;
}
.tbl_head03 table .sel_address {
    width: 100%;
    display: inline-block;
    background: #fff;
    border: 1px solid #19bc9b;
    color: #19bc9b;
    padding: 0 5px;
    height: 26px;
    border-radius: 3px;
    font-size: 12px;
}
.tbl_head03 table .td_mng .del_address {
    width: 100%;
    display: inline-block;
    border: 1px solid #aaa;
    color: #888;
    padding: 0 5px;
    height: 26px;
    line-height: 24px;
    vertical-align: middle;
    border-radius: 3px;
    font-size: 12px;
}
.tbl_head03 table .default_lb {
    width: 100%;
    display: inline-block;
    background: #fff;
    border: 1px solid #1c70e9;
    color: #3a8afd;
    cursor: pointer;
    position: relative;
    padding: 0 5px;
    height: 26px;
    line-height: 24px;
    border-radius: 3px;
    font-size: 12px;
}
.tbl_head03 table .td_mng input[type="radio"] {
    display: none;
}
.td_sbj .chk_box > label {
    display: none;
}
.td_sbj .chk_box {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    display: block;
    margin: 0;
    background: #fff;
    border: 1px solid #d0d4df;
    border-radius: 3px;
}

.win_btn .btn_submit {
    background-color: var(--main-color);
    border: none;
    border-radius: 3px;
    color: #fff;
    width: 100%;
    max-width: 150px;
}
#mb_confirm p {
    font-size: 14px !important;
}
#mb_confirm fieldset .frm_input {
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 0 16px;
}
#mb_confirm fieldset {
    padding: 48px 0 0 !important;
}
#mb_confirm fieldset .sound_only {
    display: none !important;
}
.mbskin .btn_submit {
    width: 100%;
    height: 50px !important;
    line-height: 50px !important;
    text-align: center;
    font-size: 14px !important;
    font-weight: 600;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 3px;
    border: none;
}


#mb_confirm_id {
    margin-top: 4px;
    color: var(--black-color);
    font-size: 18px !important;
}



.mypage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
    margin-bottom: 100px;
}
.mypage-grid .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 3px;
}
.mypage-grid .item > p {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.mypage-grid .item a, .mypage-grid .item span {
    display: inline-block;
    font-size: 15px;
    color: var(--black-color);
    line-height: 1.3;
}
.mypage-grid .item a {
    color: var(--main-color);
}

.new_win_con2 {
    padding: 16px !important;
}
#point .point_all {
    margin: 0 !important;
}
#point .point_all .full_li {
    border-bottom: 0 !important;
}
#point .point_all li:last-child {
    border-left: none !important;
    padding: 0px;
    margin-bottom: 0;
}
#point .point_all .full_li span {
    color: var(--black-color) !important;
}
#point .point_status {
    background-color: var(--black-color) !important;
    border-radius: 3px !important;
}
.point_list .point_num {
    font-size: 16px !important;
    color: var(--main-color) !important;
}
.point_list .point_tit {
    display: inline-block;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--main-color) !important;
}
.point_list .point_date1 {
    font-size: 14px !important;
    color: var(--sub-txt-color-02) !important;
}
.btn_close {
    width: calc(100% - 32px);
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new_win ul {
    padding: 16px;
}
.new_win ul li {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}
.new_win ul li.empty_li {
    text-align: center;
    font-size: 16px;
    color: var(--sub-txt-color-02);
}
#point .point_status {
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 16px;
}
.point_list {
    padding: 16px 0 0 !important;
}
.cou_top {
    padding: 0 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 8px;
}
.cou_target {
    width: 100%;
    display: block;
    padding: 0 16px;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.cou_date {
    width: 100%;
    display: block;
    padding: 0 16px;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--black-color);
}

#sc_coupon_frm, #od_coupon_frm {
    z-index: 10000;
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: auto !important;
    height: 500px;
    max-height: 500px;
    border: 1px solid #000;
    background: #fff;
    overflow-y: auto;
}
.od_coupon h3 {
    color: var(--black-color);
    border-bottom: 1px solid #cdcdcd;
    padding: 0 20px;
    line-height: 50px;
    margin: 0 0 12px;
    font-size: 1.25em;
    text-align: left;
    -webkit-box-shadow: 1px 2px 2px #eee;
    -moz-box-shadow: 1px 2px 2px #eee;
    box-shadow: 1px 2px 2px #eee;
}
.od_coupon .btn_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: 0;
    background: none;
    border-left: 1px solid #cdcdcd;
    font-size: 1.25em;
}
.od_coupon .tbl_head02 caption {
    display: none;
}
#sod_frm_pay .pay_tbl th {
    text-align: left;
    padding: 10px;
    width: 80px;
    border-bottom: 1px solid #e7ebf1;
    background: #fff;
    font-weight: bold;
    color: #777;
}
#sod_frm_pay .pay_tbl td {
    text-align: right;
    padding: 10px;
    height: 30px;
    border-bottom: 1px solid #e7ebf1;
    background: #fff;
}
.od_coupon .tbl_head02 table .btn_frmline {
    width: 100%;
    padding: 0 7px;
    border: 1px solid #38b2b9;
    font-size: 12px;
    border-radius: 3px;
    color: #38b2b9;
    background: #fff;
    height: 23px;
    line-height: 21px;
    margin: 0;
}

.od_coupon .tbl_head02 table {
    width: 100%;
    table-layout: fixed;
}
.od_coupon .tbl_head02 table th {
    font-size: 14px;
    color: var(--sub-txt-color-01);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 6px;
}
.od_coupon .tbl_head02 table td {
    font-size: 14px;
    color: var(--sub-txt-color-02);
    text-align: center;
    padding: 8px 6px;
}

.cp_cancel {
    font-size: 13px;
    font-weight: 500;
    color: var(--black-color);
    background-color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    margin-left: 4px;
    border: 1px solid var(--black-color);
}
#sod_frm_pt {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: #fff;
    border-radius: 3px;
    padding: 8px;
    border: 1px solid var(--border-color);
}
#sod_frm_pt span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black-color) !important;
    font-weight: 500 !important;
}
#sod_frm_pt span strong {
    color: var(--sub-txt-color-02) !important;
    font-weight: 400 !important;
}
#sod_frm_pt span.mc-txt {
    color: var(--main-color) !important;
}
.sod_frm_point {
    color: var(--black-color) !important;
}
.sod_frm_point input[type="text"] {
    height: 35px;
    padding: 0 8px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.sod_frm_point .sound_only {
    color: var(--sub-txt-color-02) !important;
}

.terms-page {
    margin-bottom: 150px;
    line-height: 1.5;
}

.review-page {
    margin-bottom: 100px;
}
.sps_img_inner .sound_only {
    font-size: 8px;
}


.review-grid {

}
.review-grid ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 12px;
}
.review-grid .item a {
    display: block;
}
.review-grid .item .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 12px;
}
.review-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-grid .item .txt {
    display: flex;
    flex-direction: column;
}
.review-grid .item .txt .name {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    margin-bottom: 12px;
}
.review-grid .item .txt .content {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 16px;
}
.review-grid .item .txt .info {
    display: flex;
}
.review-grid .item .txt .info .nn {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.review-grid .item .txt .info .nn::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    display: inline-block;
    margin: 0 12px;
}
.review-grid .item .txt .profile {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.review-grid .item .txt .profile span::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    display: inline-block;
    margin: 0 8px;
}
.review-grid .item .txt .profile span:last-child::after {
    display: none;
}
.review-grid .item > button {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}

#sps_sch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 48px !important;
}
#sps_sch > a {
    width: 100%;
    max-width: 100px;
    height: 50px !important;
    line-height: 50px !important;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--main-color) !important;
    border-radius: 3px;
}
#sps_sch > a:hover {
    opacity: .8 !important;
}
#sps_sch .sound_only {
    display: none;
}
#sps_sch select {
    float: unset !important;
    width: 150px !important;
    height: 50px !important;
    border: none !important;
    border-bottom: 1px solid var(--black-color) !important;
    padding: 0 16px;
    font-size: 14px;
    color: var(--sub-txt-color-02);
    margin: 0 !important;
    border-radius: 0 !important;
}

#sps_sch .sch_wr {
    width: 100%;
    max-width: 350px;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px;
    border: none !important;
    border-bottom: 1px solid var(--black-color) !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
#sps_sch .sch_input {
    width: 100% !important;
    height: 100% !important;
    float: unset !important;
    padding: 0 16px !important;
}
#sps_sch .sch_btn {
    float: unset !important;
    width: 50px !important;
    min-width: 50px !important;
    height: 50px !important;
}
#sps_sch .sch_wr button img {
    width: 20px;
}
.review-grid > p {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
}
.review_detail_in h3 {
    font-size: 18px !important;
}
.review_tp_cnt > span {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--black-color) !important;
    line-height: 1.3 !important; 
    margin-bottom: 12px !important;
}
#sps dl {
    display: flex !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}
#sps dt {
    display: flex !important;
    gap: 6px !important;
    font-size: 14px !important;
    color: var(--black-color) !important;
}
#sps dd {
    font-size: 14px !important;
    color: var(--sub-txt-color-02) !important;
}

.review_summ {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    border: 1px solid var(--border-color) !important;
}
.review_bt_cnt {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--sub-txt-color-01) !important;
    line-height: 1.3 !important;
}

.btn-wrap.flex-col .box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.btn-wrap.flex-col .box span {
    min-width: 70px;
    font-size: 13px;
    font-weight: 500;
    color: var(--black-color);
    min-width: 70px;
}
.btn-wrap.flex-col .box input {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    padding: 0 8px;
    border: 1px solid var(--border-color);
}

.st-terms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 130px;
}
.st-terms .st-chk {
    display: flex;
    align-items: center;
    gap: 5px;
}
.st-terms .st-chk input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.st-terms .st-chk label {
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    cursor: pointer;
}
.st-terms .st-content {
    width: 100%;
    max-width: 400px;
    height: 200px;
    margin: 24px auto 0;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
    overflow: hidden;
    overflow-y: auto;
}
.btn_confirm {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.input-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.input-col .expl {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}

.review-empty {
    margin: 36px 16px 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    text-align: center;
}