@charset "utf-8";
@import url("../fonts/font.css");

/* 공통 */
html,
body {
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Pretendard", sans-serif;
  color: #202020;
}
body {
  background: #f3f3f3;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
ol {
  margin: 0;
  padding: 0;
  padding-left: 15px;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}
#wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
#wrap .pc-wrap {
  display: none;
}
#app-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background-color: #fff;
}
#content-wrap {
  min-height: 100vh;
  padding-bottom: 120px;
  box-shadow: 0px 0px 16px rgba(0,0,0,0.1);
}
#join-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width: 1025px) {
  #wrap .pc-wrap {
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin-left: 24px;
  }
  #app-wrap {
    max-width: 480px;
    margin: 0 24px 0 auto;
    background-color: #fff;
  }
  .pc-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 650px;
    flex: 1;
    height: calc(100vh - 240px);
    min-height: 636px;
  }
  .pc-body-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.2vh;
  }
  .pc-body-header .pc-body-header-logo {
    display: inline-block;
  }
  .pc-body-header .pc-body-header-logo img {
    width: 100px;
  }
  .pc-body-header .login-box {
    margin-left: auto;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
  }
  .pc-body-header .login-box svg {
    margin-right: 4px;
  }
  .pc-body-header .login-box > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #505050;
    margin-right: 4px;
  }
  .pc-body-header .login-box > a::after {
    content: "";
    display: inline-block;
    margin: 0 16px;
    width: 2px;
    height: 20px;
    background-color: #505050;
  }
  .pc-body-header .login-box > a:last-child::after {
    display: none;
  }
  .pc-body-header .login-box > span {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #505050;
  }
  .pc-body .inner {
    padding: 0px 2.4vw 30px;
  }
  .pc-footer {
    position: relative;
    margin-top: auto;
    width: 100%;
    width: 650px;
    padding: 32px 0px 40px;
  }
  .pc-footer::after {
    content: "";
    display: block;
    position: absolute;
    width: calc(1000% + 1920px);
    bottom: 0;
    height: 100%;
    background-color: #dfeced;
    left: -500%;
    z-index: -1;
  }
  .pc-footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .pc-footer .inner .txt > p {
    font-size: 24px;
    color: #202020;
  }
  .pc-footer .inner .txt > p > span {
    display: block;
    font-weight: 300;
  }
  .pc-footer .inner .txt > p > b {
    font-weight: 600;
  }
  .pc-footer .inner .txt .store {
    margin-top: 32px;
    display: flex;
    align-items: center;
  }
  .pc-footer .inner .txt .store a {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
  }
  .pc-footer .inner .txt .store a::after {
    content: "";
    display: inline-block;
    margin: 0 24px;
    width: 2px;
    height: 24px;
    background-color: #299098;
  }
  .pc-footer .inner .txt .store a:last-child::after {
    display: none;
  }
  .pc-footer .inner .txt .store a img {
    margin-right: 4px;
  }
  .pc-footer .qr-code {
    width: 168px;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 2px solid #6d9699;
    padding: 15px;
  }
  .pc-footer .qr-code .qr-code-img {
    width: 100%;
    height: 100%;
    background: url(/assets/common/img/qr-code.png) no-repeat center / cover;
    border-radius: 10px;
  }
  .main-pc-swiper-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
  }
  .main-pc-swiper-bottom .swiper-dot-pagination {
    flex: 1;
  }
  .main-pc-swiper-bottom .link-box {
    margin-left: auto;
    padding-left: 20px;
  }
  .main-pc-swiper-bottom .link-box a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 600;
    color: #505050;
  }
  .main-pc-swiper-bottom .link-box a img {
    margin-left: 10px;
  }
}
@media (max-width: 1240px) {
  #wrap {
    max-width: 1080px;
  }
  .pc-body {
    width: 480px;
    flex: 1;
  }
  .pc-footer {
    width: 480px;
  }
  .pc-footer .inner .txt > p {
    font-size: 20px;
  }
  .pc-footer .inner .txt .store {
    margin-top: 15px;
  }
  .pc-footer .inner .txt .store a {
    font-size: 17px;
  }
  .pc-footer .qr-code {
    width: 124px;
    height: 124px;
  }
  .pc-body-header .pc-body-header-logo img {
    width: 80px;
  }
  .pc-body-header .login-box {
    font-size: 16px;
  }
  .pc-body-header .login-box svg {
    width: 16px;
  }
  .pc-body-header .login-box > a::after {
    height: 14px;
  }
  .main-pc-swiper-bottom .link-box a img {
    width: 7.4px;
  }
}
@media (max-height: 740px) {
  #wrap {
    max-width: 1080px;
  }
  .pc-body {
    width: 480px;
    min-height: 514px;
  }
  .pc-footer {
    width: 480px;
  }
  .pc-footer .inner .txt > p {
    font-size: 20px;
  }
  .pc-footer .inner .txt .store {
    margin-top: 15px;
  }
  .pc-footer .inner .txt .store a {
    font-size: 17px;
  }
  .pc-footer .qr-code {
    width: 124px;
    height: 124px;
  }
  .pc-body-header .pc-body-header-logo img {
    width: 80px;
  }
  .pc-body-header .login-box {
    font-size: 16px;
  }
  .pc-body-header .login-box > a::after {
    height: 14px;
  }
  .main-pc-swiper-bottom .link-box a img {
    width: 7.4px;
  }
}
.header-search-container {
  position: relative;
  max-width: 480px;
  margin-bottom: 12px;
}
.header-search-wrap {
  display: flex;
  align-items: center;
  height: 72px;
  background: #fff;
  padding: 0 16px;
}
.header-search-logo {
  display: block;
  width: 64px;
  flex: none;
}
.header-search-logo * {
  line-height: 1;
  font-size: 0;
}
.header-search-tit {
  font-size: 20px;
  font-weight: 600;
  color: #202020;
  flex: none;
}
.header-search-form {
  width: 100%;
}
.header-search-form input {
  width: 100%;
  border: 0;
  height: 20px;
  outline: none;
  font-size: 13px;
}
.header-search-link {
  display: flex;
  align-items: center;
  flex: 1;
  height: 36px;
  position: relative;
  padding: 10px 13px 10px 38px;
  font-size: 13px;
  border-radius: 15px;
  font-weight: 600;
  color: #909090;
  border: 1px solid #e7e7e7;
  margin-left: 16px;
}
.header-search-link .header-search-button {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  background: none;
}
.section-container {
  padding-left: 16px;
  padding-right: 16px;
}
.full-content {
  margin-left: -16px;
  margin-right: -16px;
}
.container {
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: 100%;
  box-sizing: border-box;
  min-height: 1px;
  padding: 0;
}
.toast-msg-foot {
  display: none;
  position: fixed;
  z-index: 1050;
  bottom: 16%;
  width: 100%;
  max-width: 480px;
  text-align: center;
  pointer-events: none;
}
.toast-msg-foot .toast-content {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  max-width: calc(100% - 32px);
  background-color: var(--bs-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  margin: 0 auto;
  pointer-events: none;
}
.spacer {
  display: block;
  height: 8px;
  background-color: #f1f1f1;
}
.section-container .spacer {
  margin: 0 -16px;
}
.section-container .mypage-menu .spacer {
  margin: 0;
}
.full-spacer {
  margin: 0 -16px;
}
.footer-top {
  padding: 0 16px;
}
.app-footer-title {
  position: relative;
  padding-right: 100px;
}
.app-footer-title strong {
  font-size: 14px;
  font-weight: 600;
  color: #909090;
  display: inline-block;
  margin-right: 4px;
}
.app-footer-title .footer-logo {
  display: inline-block;
  width: 50px;
  margin-top: -10px;
}
.footer-info-open-btn {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  font-weight: 500;
  border: 0;
  background: none;
  color: #909090;
}
.footer-info-open-btn img {
  width: 12px;
  margin-left: 8px;
}
.footer-info-open-btn.collapsed img {
  transform: rotate(180deg);
}
.footer-info > p:first-child {
  margin-top: 8px;
}
.footer-info > p {
  color: #909090;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 1.6;
  font-weight: 500;
}
.footer-info > p span + span:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 8px;
  margin: 0 4px;
  background-color: #909090;
}
.footer-bottom {
  padding: 20px 16px 30px;
}
.footer-nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 16px;
}
.footer-nav > ul > li > a {
  font-size: 12px;
  font-weight: 500;
  color: #909090;
}
.footer-noti {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #909090;
}
.bottom-navigation {
  max-width: 480px;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 10;
}
.bottom-navigation nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px -2px 15px rgba(0, 0, 0, 0.1);
}
.bottom-navigation nav .bottom-nav-link {
  display: inline-block;
  text-align: center;
}
.bottom-navigation .bottom-nav-item {
  flex: 1;
  text-align: center;
}
.bottom-navigation nav .bottom-nav-link span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #adadad;
}
.bottom-navigation nav .bottom-nav-link.active svg path {
  fill: #51887e;
}
.bottom-navigation
  nav
  .bottom-nav-item:nth-child(4)
  .bottom-nav-link.active
  svg
  path:nth-child(1) {
  stroke: #51887e;
  fill: #fff;
}
.bottom-navigation
  nav
  .bottom-nav-item:nth-child(4)
  .bottom-nav-link.active
  svg
  path:nth-child(3) {
  stroke: #51887e;
}
.bottom-navigation nav .bottom-nav-link.active span {
  color: #51887e;
}

.loading-container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}
.loading {
  border: 3px solid var(--bs-primary);
  border-top: 3px solid transparent;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 0.6s linear infinite;
}
.progress-circular {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.progress-circular>svg {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0
}
.progress-circular--indeterminate>svg {
  -webkit-animation: progress-circular-rotate 1.4s linear infinite;
  animation: progress-circular-rotate 1.4s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}
.progress-circular--indeterminate .progress-circular__overlay {
  -webkit-animation: progress-circular-dash 1.4s ease-in-out infinite;
  animation: progress-circular-dash 1.4s ease-in-out infinite;
  stroke-linecap: round;
  stroke-dasharray: 80,200;
  stroke-dashoffset: 0px
}
.progress-circular__underlay {
  stroke: rgba(0,0,0,.1);
  z-index: 1
}
.progress-circular__overlay {
  stroke: var(--bs-primary);
  z-index: 2;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out
}

/* 로딩 애니메이션 회전 애니메이션 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes progress-circular-dash {
  0% {
      stroke-dasharray: 1,200;
      stroke-dashoffset: 0px
  }
  50% {
      stroke-dasharray: 100,200;
      stroke-dashoffset: -15px
  }
  to {
      stroke-dasharray: 100,200;
      stroke-dashoffset: -125px
  }
}
@keyframes progress-circular-dash {
  0% {
      stroke-dasharray: 1,200;
      stroke-dashoffset: 0px
  }
  50% {
      stroke-dasharray: 100,200;
      stroke-dashoffset: -15px
  }
  to {
      stroke-dasharray: 100,200;
      stroke-dashoffset: -125px
  }
}
@-webkit-keyframes progress-circular-rotate {
  to {
      -webkit-transform: rotate(1turn);
      transform: rotate(1turn)
  }
}
@keyframes progress-circular-rotate {
  to {
      -webkit-transform: rotate(1turn);
      transform: rotate(1turn)
  }
}

/* SNS버튼 */
.btn-facebook {
  color: #fff;
  background-color: #3a5795;
  border-color: #334c83;
}
.btn-facebook.active,
.btn-facebook:active,
.btn-facebook:hover,
.open > .dropdown-toggle.btn-facebook {
  color: #fff;
  background-color: #2c4270;
  border-color: #223357;
}
.btn-twitter {
  color: #fff;
  background-color: #59adea;
  border-color: #59adea;
}
.btn-twitter.active,
.btn-twitter:active,
.btn-twitter:hover,
.open > .dropdown-toggle.btn-twitter {
  color: #fff;
  background-color: #4897d0;
  border-color: #4897d0;
}
.btn-kakao {
  color: #3c1e1e;
  background-color: #ffeb00;
  border-color: #ffeb00;
}
.btn-kakao.active,
.btn-kakao:active,
.btn-kakao:hover,
.open > .dropdown-toggle.btn-kakao {
  color: #3c1e1e;
  background-color: #ffde00;
  border-color: #ffde00;
}
.btn-naver {
  color: #fff;
  background-color: #1fcb02;
  border-color: #1fbc02;
}
.btn-naver.active,
.btn-naver:active,
.btn-naver:hover,
.open > .dropdown-toggle.btn-naver {
  color: #fff;
  background-color: #1fbc02;
  border-color: #1fbc02;
}
.divider {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  color: #e5e5e5;
  width: 100%;
}
.divider:after,
.divider.divider-center:before,
.divider.divider-center.divider-short:before {
  content: "";
  position: absolute;
  width: 100%;
  top: 8px;
  left: 30px;
  height: 0;
  border-top: 1px solid #ddd;
}
.divider.divider-center {
  text-align: center;
}
.divider.divider-center:before {
  left: -50% !important;
  right: 0;
  margin-left: -20px;
}

.divider.divider-center:after {
  left: 50% !important;
  right: 0;
  margin-left: 20px;
}

.accordion {
  width: 100%;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.accordion a:hover,
.accordion a:active {
  color: inherit;
}
.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.accordion .link a {
  display: block;
}
.accordion .second_link {
  cursor: pointer;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 15px;
  background: #f9f9f9;
}
.accordion .second_link li a {
  position: relative;
  color: #333;
  padding: 10px;
  font-size: 12px;
}
.accordion li:last-child .link {
  border-bottom: 0;
}
.accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 18px;
  color: #333;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.accordion li i.fa-chevron-down {
  right: 12px;
  left: auto;
  font-size: 16px;
}
.accordion li.open .link {
  color: #333;
}
.accordion li.open i {
  color: #333;
}
.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.select-dropdown {
  position: fixed;
  width: 100%;
  height: calc(var(--vh, 1vh) * 68);
  background-color: #fff;
  bottom: -200%;
  left: 0;
  z-index: 8;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  transition: 0.2s ease-out;
}
.page-nav-select.open .select-dropdown {
  box-shadow: 0px -8px 16px rgba(0, 0, 0, 0.1);
  bottom: 0;
}
.select-scroll-layout {
  position: relative;
  flex: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.select-scroll-layout .scroll-content {
  overflow-y: scroll;
  right: -18px;
  padding-right: 18px;
  position: absolute;
  top: 0;
  left: 0;
  right: -18px;
  bottom: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.select-scroll-layout .scroll-content .page-nav-select-tit {
  padding: 0 16px;
  height: 50px;
  display: flex;
  align-items: center;
}
.select-scroll-layout .scroll-content .page-nav-select-tit button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  background: none;
  border: 0;
  font-size: 16px;
  font-weight: 700;
}
.select-scroll-layout .scroll-content .page-nav-select-tit button i {
  margin-right: 7px;
  font-weight: 700;
  margin-top: 2px;
}
.select-scroll-layout .menu-list .item a {
  position: relative;
  display: block;
  height: 54px;
  line-height: 54px;
  padding: 0px 60px 0px 20px;
  font-size: 15px;
  color: #565656;
}
.select-scroll-layout .menu-list .item a.active {
  font-weight: 700;
  color: #212121;
}
.select-scroll-layout .menu-list .item a::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  position: absolute;
  right: 40px;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
}
.select-scroll-layout .menu-list .item a:hover {
  background-color: #eaeaea;
}
.select-scroll-layout .menu-list .item a[aria-expanded="true"] {
  background-color: #f5f5f5;
}
.select-scroll-layout .menu-list .item a[data-toggle="collapse"]::after {
  content: "\f107";
}
.select-scroll-layout
  .menu-list
  .item
  a[data-toggle="collapse"][aria-expanded="true"]::after {
  content: "\f106";
}
.select-scroll-layout .menu-list .item .collapse,
.select-scroll-layout .menu-list .item .collapsing {
  border-bottom: 1px solid #eee;
  background: #fafafa;
}
.select-scroll-layout .menu-list .item .collapse > a,
.select-scroll-layout .menu-list .item .collapsing > a {
  font-size: 13px;
  height: 50px;
  line-height: 50px;
}
.modal-dialog.video-modal {
  width: 75%;
  max-width: 1400px;
}
@media (max-height: 960px) {
  .modal-dialog.video-modal {
    width: 75%;
    max-width: 1200px;
  }
}
@media (max-height: 900px) {
  .modal-dialog.video-modal {
    width: 75%;
    max-width: 900px;
  }
}
.modal-dialog.video-modal .modal-content {
  background: none;
  overflow: visible;
  box-shadow: none;
}
.modal-dialog.video-modal .modal-body {
  padding: 0;
}
.modal-dialog.video-modal .close-cont {
  position: relative;
  width: 100%;
  height: 50px;
}
.modal-dialog.video-modal .close-cont .close {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  text-indent: 0;
  opacity: 1;
  font-size: 35px;
  width: 50px;
  height: 50px;
  color: #fff;
  text-shadow: none;
  background-color: #000;
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: 0.4s ease-in;
}
.modal.in .modal-dialog.video-modal .close-cont .close {
  opacity: 1;
}
.video-popup-box {
  position: relative;
}
.video-popup-box::after {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-popup-box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.video-popup-container {
  background-color: #000;
}
.video-popup-container .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
}
.video-popup-container .swiper-slide .oooo {
  position: absolute;
  width: 300px;
  height: 50px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #000;
}
.video-popup-thumbs {
  background-color: #000;
  max-height: 148px;
}
.video-popup-thumbs .swiper-wrapper {
  padding: 5px;
  height: 100%;
}
.video-popup-thumbs .swiper-slide .cover {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.video-popup-thumbs .swiper-slide .cover::after {
  content: "";
  display: block;
  padding-top: 50%;
}
.video-popup-thumbs .swiper-slide.swiper-slide-active .cover::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px solid red;
  position: absolute;
  top: 0;
  left: 0;
}
.video-popup-button-next,
.video-popup-button-prev {
  width: 72px;
  height: 72px;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  top: calc(50% - 45px);
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
}
.swiper-button-disabled.video-popup-button-next,
.swiper-button-disabled.video-popup-button-prev {
  opacity: 0.5;
  display: none;
}
.video-popup-button-next:hover,
.video-popup-button-prev:hover {
  background-color: rgba(0, 0, 0, 1);
  opacity: 1;
  color: #fff;
}
.video-popup-button-prev {
  left: -90px;
}
.video-popup-button-next {
  right: -90px;
}
.video-popup-container .media {
  position: relative;
}
.video-popup-container .youtube_img {
  width: 100%;
  padding-bottom: 56.25%;
}
.video-popup-container .play::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  cursor: pointer;
}
.video-popup-container .play::after {
  content: "\f144";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  z-index: 1;
  color: #fff;
  cursor: pointer;
}
.video-popup-container .play-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-color: rgba(245, 91, 91, 0.2);
}
.video-popup-container .play-btn::after {
  content: "\f144";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  z-index: 1;
  color: #fff;
  cursor: pointer;
}
.video-popup-container .pause-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-color: rgba(131, 91, 245, 0.2);
}
.video-popup-container .pause-btn::after {
  content: "\f04c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  z-index: 1;
  color: #fff;
  cursor: pointer;
}
.video-popup-container .thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 메인 */
.main-section {
  padding-bottom: 32px;
}
.title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.title-wrap .title-box {
  padding-right: 10px;
}
.title-box .main-title {
  font-size: 18px;
  font-weight: 600;
  color: #202020;
}
.title-box .sub-title {
  display: block;
  font-size: 13px;
  color: #909090;
  margin-top: 4px;
}
.title-more-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-primary);
}
.title-more-link:hover,
.title-more-link:focus {
  color: var(--bs-primary);
}
.homeTop-container {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.homeTop-banner {
  width: calc(50%);
}
.thumbnail {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.thumbnail::after {
  content: "";
  display: block;
}
.homeTop-thumbnail {
  border-radius: 10px;
  overflow: hidden;
}
/* .homeTop-thumbnail::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.16);
} */
.homeTop-thumbnail::after {
  padding-top: 82%;
}
.homeTop-thumbnail .text {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  z-index: 1;
}
.homeTop-link-group {
  display: flex;
  flex-wrap: wrap;
  width: calc(50%);
  gap: 8px;
}
.homeTop-link-group .inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  background-color: #dfeced;
  padding: 8px 38px 8px 12px;
  border-radius: 10px;
  color: #505050;
  font-weight: 600;
}
.homeTop-link-group .inner .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  margin-right: 16px;
  text-align: center;
}
.homeTop-link-group .inner::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/common/img/arrow-right-gray.svg) no-repeat;
  background-size: 10px 19px;
  background-position: center;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.slide-area {
  overflow: hidden;
}
.quick-swiper-category .swiper-slide {
  width: auto;
}
.quick-link {
  display: block;
  text-align: center;
  margin: 0 10px;
}
.theme-link-img {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 99px;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.theme-link-img.bg1 {
  background-image: url(/assets/common/img/user/quick-img1.png);
}
.theme-link-img.bg2 {
  background-image: url(/assets/common/img/user/quick-img2.png);
}
.theme-link-img.bg3 {
  background-image: url(/assets/common/img/user/quick-img3.png);
}
.theme-link-img.bg4 {
  background-image: url(/assets/common/img/user/quick-img4.png);
}
.theme-link-img.bg5 {
  background-image: url(/assets/common/img/user/quick-img5.png);
}
.theme-link-img.bg6 {
  background-image: url(/assets/common/img/user/quick-img6.png);
}
.theme-link-img.bg7 {
  background-image: url(/assets/common/img/user/quick-img7.png);
}
.theme-link-img.bg8 {
  background-image: url(/assets/common/img/user/quick-img8.png);
}
.theme-link-img.bg9 {
  background-image: url(/assets/common/img/user/quick-img9.png);
}
.quick-link .quick-link-txt {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #505050;
}
.swiper-number-pagination.swiper-pagination-fraction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  bottom: 8px;
  width: auto;
  left: auto;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  z-index: 1;
  padding: 4px;
  min-width: 44px;
  border-radius: 4px;
}
.swiper-number-pagination.swiper-pagination-fraction span {
  margin: 0 2px;
}
.view-visual-swiper .swiper-number-pagination.swiper-pagination-fraction {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
.swiper-dot-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 10px;
  background-color: #92b9b2;
  border-radius: 99px;
  opacity: 1;
}
.swiper-dot-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bs-primary);
}
.swiper-auto .swiper-slide {
  width: auto;
}
.visual-box {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #d9d9d9;
  overflow: hidden;
}
.visual-box::after {
  content: "";
  display: block;
  padding-top: 75%;
}
.visual-box.visual-box-long::after {
  padding-top: calc((3 / 2) * 100%);
}
.visual-box.visual-box-square::after {
  padding-top: 100%;
}
.anma-result-content .visual-box::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 33%
  );
}
/* .anma-result-content .visual-box::after {
  padding-top: 60%;
} */
.wish-btn {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: none;
  color: #909090;
  border: 0;
  font-size: 20px;
  padding: 0;
}
.visual-box .wish-btn {
  position: absolute;
  color: #fff;
  right: 8px;
  top: 8px;
  z-index: 2;
  cursor: default;
}
.wish-btn.active i {
  font-weight: 900;
  color: #ff0000;
}
.visual-box .badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
}
.visual-box .rating {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
}
.visual-box .rating .rating-num {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.massage-info {
  padding: 6px 0;
}
.massage-info .massage-title {
  font-size: 14px;
  font-weight: 600;
  color: #505050;
  margin-bottom: 4px;
}
.meter-txt {
  margin-left: 4px;
  font-weight: 500;
  color: #909090;
}
.massage-detail-info {
  margin-bottom: 4px;
}
.massage-detail-info dt,
.massage-detail-info dd {
  margin-bottom: 0;
}
.massage-detail-info dd {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 500;
  color: #505050;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.massage-detail-info dd i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  text-align: center;
  position: absolute;
  top: 1px;
  left: 0;
}
.massage-detail-info dd + dd {
  margin-top: 3px;
}
.fa-star {
  color: #ffe500;
}
.massage-detail-info .fa-location-dot {
  color: #e85e34;
}
.badge {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 4px;
  background-color: #eee;
  color: #202020;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}
.badge.coupon-badge {
  background-color: #ffe1e1;
  color: #ff0000;
}
.badge.red {
  background-color: #ffe1e1;
  color: #ff0000;
}
.badge.red2 {
  background-color: #ff0000;
  color: #fff;
}
.badge.blue {
  background-color: #058fff;
  color: #fff;
}
.badge.gray {
  background-color: #909090;
  color: #fff;
}
.badge.black {
  background-color: #505050;
  color: #fff;
}
.new-badge {
  display: inline-block;
  padding: 3px;
  border-radius: 3px;
  background-color: #f81919;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  font-style: normal;
}
.massage-price-box {
  display: flex;
  align-items: center;
}
.massage-price-box .badge {
  margin-right: 4px;
}
.massage-price-box .price {
  font-size: 14px;
  font-weight: 600;
  color: #505050;
}
.category-slide {
  width: calc(100% + 32px);
  margin-left: -16px;
}
.category-slide .category-list {
  width: 100%;
  position: relative;
  display: flex;
  z-index: 9;
  margin-bottom: 16px;
  padding: 0 10px;
  overflow: hidden;
}
.category-slide .category-list::after {
  content: "";
  display: block;
  width: calc(100% + 12px);
  height: 1px;
  background-color: #f1f1f1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
}
.category-slide .category-list .swiper-wrapper {
  width: 100%;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
}
.category-slide .category-list .swiper-slide {
  white-space: nowrap;
  color: #767676;
  display: block;
  cursor: pointer;
  width: auto;
  text-align: center;
  height: auto;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.category-slide .category-list .swiper-slide.active {
  color: #202020;
  font-weight: 600;
}
.category-slide .category-list .swiper-slide:last-child {
  margin-right: 0 !important;
}
.category-slide .category-list .swiper-slide span,
.category-slide .category-list .swiper-slide a {
  position: relative;
  padding: 10px;
  display: inline-block;
}
.category-slide .category-list .swiper-slide.active span::after,
.category-slide .category-list .swiper-slide.active a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #505050;
}
.category-slide .category-list .swiper-slide.active a {
  pointer-events: none;
}
.scroll-spy-wrap {
  display: flex;
  align-items: flex-start;
  overflow-x: scroll;
  flex-wrap: nowrap;
  border-bottom: 1px solid #e7e7e7;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll-spy-wrap::-webkit-scrollbar {
  display: none;
}
.section-container .scroll-spy-wrap {
  width: calc(100% + 32px);
  margin-left: -16px;
}
.scroll-spy {
  display: flex;
  white-space: nowrap;
  column-gap: 24px;
}
.section-container .scroll-spy-wrap .scroll-spy {
  padding-left: 16px;
  padding-right: 16px;
}
.scroll-spy .scroll-spy-link {
  display: inline-block;
  padding: 10px 0;
  font-size: 14px;
  background: none;
  color: #909090;
  font-weight: 400;
  border: 0;
}
.scroll-spy .list-group-item + .list-group-item.active {
  margin: 0;
}
.scroll-spy .scroll-spy-link.active {
  border: 0;
  color: #202020;
  font-weight: 600;
}
.scroll-spy .scroll-spy-link.active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #505050;
}
.list-area .massage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
}
.list-area .massage-list > a {
  display: block;
  width: calc(50% - 4px);
  flex: 0 0 calc(50% - 4px);
}
.homeNoti-list {
  list-style: none;
}
.homeNoti-list > li > a {
  position: relative;
  display: block;
  padding-left: 22px;
  padding-right: 24px;
}
.homeNoti-list > li + li {
  margin-top: 8px;
}
.homeNoti-list > li > a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: url(/assets/common/img/arrow-right-gray.svg) no-repeat center;
  background-size: 9px 19px;
}
.homeNoti-list .icon {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 2px;
  background-repeat: no-repeat;
  background-position: center;
}
.homeNoti-list .speaker-icon {
  background-image: url(/assets/common/img/speaker.svg);
}
.homeNoti-list .qa-icon {
  background-image: url(/assets/common/img/round-q.svg);
}
.homeNoti-list .txt {
  font-size: 14px;
  font-weight: 500;
  color: #505050;
}

/* 메뉴 */
.sticky-header {
  position: sticky;
  background-color: #fff;
  z-index: 8;
}
.tab-menu-area {
  margin-bottom: 24px;
}
.sticky-header.tab-menu-area {
  top: 0;
}
.tab-menu-area nav {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #f1f1f1;
}
.tab-menu-area nav .tab-menu-link {
  position: relative;
  flex: 1;
  display: block;
  padding: 8px 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #202020;
  background-color: transparent;
  border: 0;
}
.tab-menu-area nav .tab-menu-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #202020;
}
.region-list-area {
  padding: 0 16px;
  font-size: 14px;
}
.region-list-area > .deps-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.region-list-area > .deps-list > li {
  width: calc(50%);
  padding: 0 8px;
}
.region-list-area > .deps-list > li > a {
  position: relative;
  display: block;
  padding: 12px 40px 12px 16px;
  border-bottom: 1px solid #dfdfdf;
  font-weight: 600;
  color: #505050;
  transition: 0s;
}
.region-list-area > .deps1-list > li > a::after {
  content: "";
  display: block;
  background: url(/assets/common/img/menu-angle-icon.svg) no-repeat center;
  background-size: 24px;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.region-list-area .deps1-list > li.active > a {
  background: #f4f4f7;
  border: 0;
  font-weight: 700;
}
.region-list-area .deps1-list > li.active:nth-child(-n+2) > a {
  border-radius: 6px 6px 0 0;
}
.region-list-area .deps1-list > li.active > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.region-list-area .deps2-list {
  display: none;
  position: relative;
  width: calc(200% + 16px);
  background: #f4f4f7;
  flex-wrap: wrap;
  padding: 6px 0px;
  border-radius: 0px 0px 6px 6px;
  z-index: 1;
}
.region-list-area .deps1-list > li:nth-child(2n) .deps2-list {
  left: calc(-100% - 16px);
}
.region-list-area li.active .deps2-list {
  display: flex !important;
}
.region-list-area .deps2-list > li {
  width: calc(50%);
}
.region-list-area .deps2-list > li > a {
  display: block;
  padding: 12px 16px;
  color: #505050;
  font-size: 13px;
  font-weight: 500;
}

/* 페이지 */
.page-header {
  position: relative;
  max-width: 480px;
}
.page-header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 16px;
  background: #fff;
}
.page-header-wrap.bordered {
  border-bottom: 1px solid #f1f1f1;
}
.page-title {
  display: flex;
  align-items: center;
  margin-right: auto;
  overflow: hidden;
}
.page-title h1 {
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.page-back-btn {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 14px;
  text-align: center;
  background: none;
  border: 0;
  padding: 0;
}
.page-title .page-back-btn {
  margin-right: 16px;
}
.page-header-util {
  max-width: 210px;
  margin-left: auto;
}
.util-group {
  display: flex;
  align-items: center;
}
.util-btn {
  display: inline-flex;
  width: 24px;
  height: 24px;
  line-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: center;
}
.util-group .util-btn + .util-btn {
  margin-left: 16px;
}
.util-btn i {
  font-size: 22px;
}
.util-btn.active i {
  font-weight: 900;
}
.util-btn.active .fa-heart {
  color: #ff0000;
}
.util-btn[disabled] {
  background: transparent;
}
.anma-result-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
}
.anma-result-wrap .anma-result-item {
  width: 100%;
}
.anma-result-wrap .anma-result-item > a {
  display: block;
}
.anma-result-content .info {
  padding: 6px 0;
}
.anma-name p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #505050;
}
.anma-name span {
  font-weight: 500;
  font-size: 14px;
  color: #909090;
}
.anma-service {
  margin-top: 6px;
  display: flex;
  align-items: flex-end;
}
.anma-service .tit {
  font-size: 14px;
  font-weight: 600;
  color: #505050;
}
.anma-service .service-detail {
  padding-right: 16px;
  overflow: hidden;
}
.anma-service .service-detail .txt {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #909090;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.anma-service .price {
  flex: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-primary);
  margin-left: auto;
}

/*  */
#app-wrap .offcanvas-bottom {
  left: auto;
  right: auto;
  height: auto;
  max-width: 480px;
  width: 100%;
  max-height: 75vh;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  
}
.bottomSheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.bottomSheet-title {
  font-size: 20px;
  font-weight: 600;
  color: #202020;
}
.bottomSheet-title2 {
  font-size: 16px;
  font-weight: 600;
  color: #202020;
}
.bottomSheet-close {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 20px;
  padding: 0;
  margin: 0;
  text-align: center;
  background: transparent;
  border: 0;
}
.bottomSheet-body {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 24px;
  overflow: auto;
  overflow-x: hidden;
}
.bottomSheet-body .category-slide {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
}
.bottomSheet-footer {
  padding: 16px;
}
.bottomSheet-section {
  padding: 18px 0;
}
.menu-select > li + li {
  margin-top: 8px;
}
.menu-select a, .menu-select button {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #505050;
  padding: 8px 0;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
}
.menu-select a.active, .menu-select button.active {
  font-weight: 700;
  color: #202020;
}
/* 폼 관련 */
.form-container {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  padding-bottom: 106px;
}
.form-body {
  overflow: auto;
  flex: 1 1 0%;
  padding: 24px 16px 24px;
}
.form-footer {
  padding: 20px 16px 32px;
  position: fixed;
  bottom: 0;
  max-width: 480px;
  width: 100%;
  background-color: #fff;
}
.section-none-contents {
  padding-top: 154px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.none-contents {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.none-contents i {
  font-size: 16px;
  color: #909090;
}
.none-contents span {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #505050;
}
.none-contents .txt2 {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0px;
}
.none-contents a,
.none-contents button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  padding: 0 24px;
  height: 42px;
  background-color: var(--btn-active);
  margin-top: 24px;
}
.none-contents a span,
.none-contents button span {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #505050;
}
.full-height {
  height: calc(100vh - 156px);
}
.form-tit {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0 16px;
}
.form-check-list .form-check-item {
  margin: 10px 0 14px;
}
.form-check-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.form-check-item input {
  position: absolute;
  width: 0px;
  height: 0px;
  padding: 0px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  border: 0px;
}
.form-check-item label {
  position: relative;
  display: inline-block;
  color: #505050;
  font-size: 14px;
  font-weight: 600;
  padding-left: 26px;
  cursor: pointer;
}
.form-check-item label span {
  display: inline-block;
  line-height: 20px;
}
.form-check-item label::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px;
  border: 1px solid #909090;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.form-check-item label::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px;
}
.form-check-item input[type="checkbox"]:checked + label::before {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-image: url(/assets/common/img/checkbox-icon.svg);
}
.form-check-item input[type="radio"] + label::before {
  border-radius: 50%;
}
.form-check-item input[type="radio"] + label::after {
  border-radius: 50%;
}
.form-check-item input[type="radio"]:checked + label::before {
  background-color: #fff;
  border: 5px solid var(--bs-primary);
}
.form-check-btn-list {
  display: flex;
  align-items: center;
  gap: 8px 16px;
}
.form-check-btn-list .form-check-btn-item {
  position: relative;
  flex: 1;
}
.form-check-btn-item input {
  position: absolute;
  width: 0px;
  height: 0px;
  padding: 0px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  border: 0px;
}
.form-check-btn-item label {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  background-color: #f1f1f1;
  color: #505050;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
}
.form-check-btn-item input:checked + label {
  color: #fff;
  background-color: var(--bs-primary);
}
.form-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.form-group + .form-group {
  margin-top: 16px;
}
.form-group .form-box {
  flex: 1;
}
.form-control {
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: 600;
  color: #505050;
}
.form-control:focus {
  background-color: #fff;
  box-shadow: none;
}
div.form-control[disabled] {
  color: #909090;
  font-weight: 500;
}
textarea.form-control {
  height: 100px;
}
input::placeholder,
textarea::placeholder,
input.form-control::placeholder,
textarea.form-control::placeholder {
  color: #909090;
  font-weight: 500;
}
.form-btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-btn-swiper.form-btn-list {
  display: block;
}
.form-btn-item {
  width: calc(33.33333% - 6px);
}
.form-btn-swiper.form-btn-list .form-btn-item {
  width: 100%;
}
.form-btn-item.form-btn-w-auto-item {
  width: auto;
  min-width: 80px;
}
.form-btn-item input {
  position: absolute;
  width: 0px;
  height: 0px;
  padding: 0px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  border: 0px;
}
.form-btn-item label {
  display: inline-block;
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding: 0 8px;
  text-align: center;
  background-color: #f1f1f1;
  color: #505050;
  border-radius: 5px;
  cursor: pointer;
}
.form-btn-item input:checked + label {
  background-color: var(--bs-primary);
  color: #fff;
}

.range-slider-box {
  background-color: #dfeced;
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.range-slider-box .range-slide-txt {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #505050;
  margin-bottom: 12px;
}
.range-slider-box .irs--flat .irs-from,
.range-slider-box .irs--flat .irs-to,
.range-slider-box .irs--flat .irs-single {
  font-size: 11px;
  line-height: 1.2;
  background-color: var(--bs-primary);
}
.range-slider-box .irs--flat .irs-from:before,
.range-slider-box .irs--flat .irs-to:before,
.range-slider-box .irs--flat .irs-single:before,
.range-slider-box .irs--round .irs-from:before,
.range-slider-box .irs--round .irs-to:before,
.range-slider-box .irs--round .irs-single:before {
  border-top-color: var(--bs-primary);
}
.range-slider-box .irs--flat .irs-min,
.range-slider-box .irs--flat .irs-max {
  background-color: #fff;
  font-size: 11px;
}
.range-slider-box .irs--flat .irs-line {
  top: 30px;
  height: 4px;
  background-color: #c9c9c9;
  border-radius: 4px;
}
.range-slider-box .irs--flat .irs-bar {
  top: 30px;
  height: 4px;
  background-color: var(--bs-primary);
}
.range-slider-box .irs--flat .irs-handle {
  top: 22px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  cursor: pointer;
}
.range-slider-box .irs--flat .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  margin-left: -1px;
  background-color: #dfeced;
  border: 2px solid var(--bs-primary);
  border-radius: 50%;
}
.range-slider-box .irs--flat .irs-handle.state_hover > i:first-child,
.range-slider-box .irs--flat .irs-handle:hover > i:first-child {
  background-color: var(--bs-primary);
}
.range-slider-box .irs--round .irs-line {
  background-color: #c9c9c9;
}
.range-slider-box .irs--round .irs-from,
.range-slider-box .irs--round .irs-to,
.range-slider-box .irs--round .irs-single,
.range-slider-box .irs--round .irs-bar {
  background-color: var(--bs-primary);
  font-size: 12px;
}
.range-slider-box .irs--round .irs-handle {
  border-color: var(--bs-primary);
  box-shadow: none;
}
.range-slider-box .irs--round .irs-min,
.range-slider-box .irs--round .irs-max {
  font-size: 12px;
}
.range-slider-box .irs--round .irs-grid-pol {
  background-color: #a4b3b0;
}
.range-slider-box .irs--round .irs-grid-text {
  color: #54706a;
}
.theme-select-box input {
  position: absolute;
  width: 0px;
  height: 0px;
  padding: 0px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  border: 0px;
}
.theme-select-box label {
  display: inline-block;
  text-align: center;
}
.theme-select-box label .txt {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #505050;
}
.theme-select-box label .theme-link-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  border: 3px solid transparent;
}
.theme-select-box input:checked + label .theme-link-img::after {
  border-color: var(--bs-primary);
}
.theme-select-box input:checked + label .txt {
  font-weight: 700;
}
.agree-check-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.agree-check-list .agree-check-item + .agree-check-item {
  margin-top: 12px;
}
.agree-check-item input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.agree-check-item.allCheck label {
  font-size: 16px;
  font-weight: 600;
}
.agree-check-item label {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #505050;
  padding-left: 26px;
  cursor: pointer;
}
.agree-check-item label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #909090;
  position: absolute;
  top: 0px;
  left: 0;
}
.agree-check-item input:checked + label::before {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-image: url(/assets/common/img/check-path-white.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}
.agree-check-item .more {
  color: #909090;
  text-decoration: underline;
  flex: none;
  margin-left: 8px;
}
.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-group .reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 52px;
  width: 104px;
  flex: 0 0 auto;
  color: #909090;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background: #fff;
}
.btn-group .wish-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 52px;
  width: 52px;
  flex: 0 0 auto;
  color: #202020;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background: #fff;
  line-height: 1;
}
.btn-group .wish-btn i {
  font-size: 24px;
}
.btn-group .wish-btn.actve i {
  font-weight: 900;
}
.btn-group .apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 52px;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: var(--bs-primary);
}
.btn-group .apply-btn:disabled, .btn-group a.apply-btn[disabled] {
  background: #cbcbcb;
}
.card-list-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
}
.card-list-item {
  width: 100%;
}
.card-list-item > a {
  display: block;
  padding: 16px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}
.card-list-item .card-list-box {
  display: block;
  padding: 16px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  border-radius: 10px;
}
.card-item {
  display: flex;
}
.card-item .card-visual {
  width: 32%;
  min-width: 90px;
  max-height: 240px;
  flex: none;
}
.card-item .card-info {
  position: relative;
  flex: 1;
  margin-left: 10px;
  overflow: hidden;
}
.card-info .content {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.card-info .tit-box .tit {
  font-size: 15px;
  font-weight: 600;
  color: #505050;
}
.card-info .tit-box .txt {
  font-size: 13px;
  font-weight: 500;
  color: #909090;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.card-info .tit-box .rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0 -2px;
}
.card-info .tit-box .rating .rating-num {
  font-size: 12px;
  font-weight: 600;
  color: #909090;
  margin-left: 4px;
}
.card-info-btn-group {
  position: absolute;
  width: 100%;
  text-align: right;
  top: 0;
  z-index: 2;
}
.card-info-btn-group ~ .content {
  padding-top: 28px;
}
.card-info-btn-group button,
.card-info-btn-group a {
  cursor: default !important;
}
.card-info .price-box {
  text-align: right;
  margin-top: 20px;
}
.card-info .price-box .txt {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #505050;
}
.card-info .price-box .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-primary);
}
.card-info .program-box {
  font-size: 13px;
  font-weight: 500;
  color: #909090;
  text-align: left;
  margin-top: 20px;
}
.card-list-box .reservation-info {
  margin-bottom: 10px;
}
.card-list-box .reservation-info .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.card-list-box .reservation-info .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reservation-info .reservation-date {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #505050;
  flex: 1;
}
.card-list-box .reservation-info .top a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-primary);
}
.reservation-info .reservation-number {
  font-size: 11px;
  font-weight: 500;
  color: #909090;
}
.card-btn-group {
  display: flex;
  gap: 16px;
}
.card-btn-group a,
.card-btn-group button {
  flex: 1;
  width: 100%;
}
.star-box {
  display: inline-flex;
  position: relative;
  font-size: 13px;
}
.star-box .star-empty,
.star-box .star-fill {
  display: flex;
  align-items: center;
  height: 14px;
}
.star-box .star-empty i,
.star-box .star-fill i {
  width: 14px;
  height: 14px;
  line-height: 14px;
  margin: 0 2px;
}
.star-box .star-empty .fa-star {
  color: #d9d9d9;
}
.star-box .star-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  overflow: hidden;
}
.dashed-line {
  display: block;
  margin: 24px 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(
    to right,
    #909090 40%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: bottom;
  background-size: 10px 1px;
  background-repeat: repeat-x;
}
.star-select-list {
  padding: 24px 0;
}
.star-select-list .star-select-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.star-select-list .star-select-item + .star-select-item {
  margin-top: 12px;
}
.star-select-item .star-tit {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #505050;
  margin-right: 10px;
}
.star-select {
  position: relative;
  font-size: 20px;
  display: inline-flex;
}
.star-select .star-empty {
  display: inline-flex;
  align-items: center;
  color: #ddd;
}
.star-select.big {
  font-size: 44px;
}
.star-select .fa-star {
  color: #ddd;
}
.star-select input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.star-select .star-fill {
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
}
.star-select .star-fill .fa-star {
  color: #ffe500;
}
.member-sub-title {
  font-size: 14px;
  color: #909090;
}
/* 마이페이지 */
.mypage-title-wrap {
  padding: 12px 0 24px;
}
.mypage-login-link {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #505050;
  padding-right: 28px;
}
.mypage-login-link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/common/img/arrow-right-gray.svg) no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mypage-login-before p {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bs-primary);
}
.mypage-login-after .nickname {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #505050;
  margin-bottom: 8px;
}
.mypage-login-after .login-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.mypage-login-after .login-info .tel {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #505050;
  margin-left: 4px;
}
.login-btn-group {
  display: flex;
  gap: 16px;
}
.login-btn-group > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  padding: 12px 10px;
  background-color: #dfeced;
  width: 100%;
  flex: 1;
  color: #505050;
}
.login-btn-group > a > p {
  font-size: 15px;
  font-weight: 600;
}
.login-btn-group > a > span {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.sns-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
}
.sns-icon.facebook {
  background-image: url(/assets/common/img/facebook-logo.svg);
}
.sns-icon.kakao {
  background-image: url(/assets/common/img/kakaotalk-logo.svg);
}
.sns-icon.naver {
  background-image: url(/assets/common/img/naver-logo.svg);
}
.sns-icon.apple {
  background-image: url(/assets/common/img/apple-logo.svg);
}
.sns-icon.email {
  background-image: url(/assets/common/img/email-icon.svg);
}

.mypage-menu {
  padding: 4px 0;
  margin: 0 -16px;
}
.mypage-menu .mypage-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 56px;
  font-size: 15px;
  font-weight: 600;
  color: #505050;
  border-bottom: 1px solid #f1f1f1;
}
.mypage-menu .mypage-menu-link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/common/img/arrow-right-gray.svg) no-repeat center;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* 모달 modal */
.modal {
  width: 100%;
  left: auto;
  max-width: 480px;
}
.modal-content {
  border-radius: 10px;
}
.full-modal.modal .modal-content {
  border: 0;
  border-radius: 0;
  min-height: 100vh;
}
.modal-header .modal-title {
  font-size: 16px;
}
.full-modal.modal .modal-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1;
  border-radius: 0;
  border-bottom: 0;
  flex: none;
  height: 56px;
}
.modal-alert {
  display: none;
}
.modal-alert-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  width: 100%;
  z-index: 99;
}
.modal-alert-container {
  width: calc(100% - 64px);
  padding: 32px 12px 24px;
  border-radius: 14px;
  background-color: #fff;
}
.modal-alert-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--bs-primary);
}
.modal-alert-body {
  margin-top: 16px;
}
.modal-alert-content {
  font-size: 14px;
  font-weight: 600;
  color: #909090;
  text-align: center;
  word-break: keep-all;
}
.modal-alert-footer {
  margin-top: 16px;
}
.modal-alert-btn-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
}
.modal-alert-btn-group a, .modal-alert-btn-group button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 0;
  background: none;
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}
#modal-btn-cancel {
  color: #bababa;
}
#modal-btn-confirm {
  color: #FF5C00;
  font-weight: 700;
}
#modal-btn-cancel.on, #modal-btn-confirm.on {
  color: #FF5C00 !important;
  font-weight: 700;
}
#modal-btn-cancel.off, #modal-btn-confirm.off {
  color: #bababa !important;
  font-weight: 500;
}
.agreement-popup-content {
  font-size: 14px;
  line-height: 1.6;
}
/* 상세페이지 */
.view-slide-section {
  position: relative;
}
.view-visual-swiper .visual-box {
  border-radius: 0;
}
.view-content-box {
  padding: 24px 0;
}
.view-content-box .title {
  font-size: 18px;
  color: #202020;
  font-weight: 600;
  margin-bottom: 16px;
}
.view-content-box .star {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-top: 2px;
}
.view-content-box .star::before {
  content: "\f005";
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffe500;
  margin-right: 2px;
}
.view-content-box .star .score {
  display: inline-block;
  color: #505050;
  font-weight: 500;
  margin-right: 4px;
}
.view-content-box .star .more {
  position: relative;
  display: inline-block;
  color: var(--bs-primary);
  font-weight: 500;
  padding-right: 20px;
}
.view-content-box .star .more::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/assets/common/img/arrow-right-gray.svg) no-repeat center;
  background-size: 7px;
}
.center-info-txt {
  font-size: 14px;
  font-weight: 500;
  color: #909090;
  margin-top: 6px;
}
.view-content-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.view-content-btn-group a,
.view-content-btn-group button {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  color: #505050;
  font-weight: 600;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  height: 32px;
  line-height: 1;
}
.view-content-btn-group a img,
.view-content-btn-group button img {
  display: inline-block;
  margin-right: 2px;
}

.view-content-box .date {
  font-size: 14px;
  font-weight: 600;
  color: #505050;
}

.acon-area {
  position: relative;
}
.acon-item {
  border-bottom: 1px solid #e7e7e7;
}
.acon-item:last-of-type {
  border-bottom: 0;
}
.acon-btn {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 8px 52px 8px 16px;
  font-size: 14px;
}
.acon-btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/assets/common/img/arrow-bottom-gray.svg) no-repeat center;
  background-size: 24px;
}
.acon-btn strong {
  display: block;
  font-weight: 600;
  color: #505050;
}
.acon-btn span {
  display: block;
  font-weight: 500;
  color: #909090;
}
.acon-btn:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.acon-btn:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}
.acon-category-list {
  position: relative;
  background-color: #fafafa;
}
.acon-category-list > li {
  border-bottom: 1px solid #e7e7e7;
}
.acon-category-list > li.parsley-error {
  border-color: #e7e7e7 !important;
}
.acon-category-list > li.parsley-error input + label .info::before ,.acon-category-list > li.parsley-error ~ li input + label .info::before {
  border-color: #ff4d38 !important;
}
.acon-category-list > li:last-of-type {
  border-bottom: 0;
}
.acon-category-list .cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  min-height: 56px;
}
.acon-category-list .cont .info {
  flex: 1;
  padding-right: 18px;
}
.acon-category-list .cont .info strong {
  display: block;
  color: #505050;
  font-weight: 600;
}
.acon-category-list .cont .info span {
  display: block;
  color: #909090;
}
.acon-category-list .cont .price {
  font-weight: 600;
  color: #505050;
  flex: none;
}
.acon-category-list > li label {
  cursor: pointer;
}
.acon-category-list > li label .info {
  position: relative;
  padding-left: 28px;
}
.acon-category-list > li input[type="radio"] + label .info::before, .acon-category-list > li input[type="checkbox"] + label .info::before  {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #909090;
  background: #fff;
}
.acon-category-list > li input[type="radio"] + label .info::before {
  border-radius: 50%;
}
.acon-category-list > li input[type="checkbox"] + label .info::before {
  border-radius: 4px;
}
.acon-category-list > li input[type="radio"],
.acon-category-list > li input[type="checkbox"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.acon-category-list > li input[type="radio"]:checked + label,
.acon-category-list > li input[type="checkbox"]:checked + label {
  background-color: #dfeced;
}
.acon-category-list > li input[type="radio"]:checked + label .info::before {
  border: 5px solid var(--bs-primary);
}
.acon-category-list > li input[type="checkbox"]:checked + label .info::before {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-image: url(/assets/common/img/checkbox-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
}
.service-list > li {
  flex: 0 0 25%;
}
.service-list .service-box {
  position: relative;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 8px;
}
.service-list .service-box .icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center;
}
.service-list .service-box .icon.parking {
  background-image: url(/assets/common/img/service-parking.svg);
}
.service-list .service-box .icon.wifi {
  background-image: url(/assets/common/img/service-wifi.svg);
}
.service-list .service-box .icon.shower {
  background-image: url(/assets/common/img/service-shower.svg);
}
.service-list .service-box .icon.woman {
  background-image: url(/assets/common/img/service-woman.svg);
}
.service-list .service-box .icon.private {
  background-image: url(/assets/common/img/service-private.svg);
}
.service-list .service-box .icon.couple {
  background-image: url(/assets/common/img/service-couple.svg);
}
.service-list .service-box .icon.voucher {
  background-image: url(/assets/common/img/service-voucher.svg);
}

.service-list .service-box span {
  display: block;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #909090;
}
.swiper-slide-auto .swiper-wrapper .swiper-slide {
  width: auto;
}
.slide-time-select input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.slide-time-select label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  height: 32px;
  border-radius: 5px;
  background-color: #dfeced;
  color: var(--bs-primary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.slide-time-select input:checked + label {
  background-color: var(--bs-primary);
  color: #fff;
}
.slide-time-select input[disabled] + label {
  background-color: #eee;
  color: #979797;
  cursor: default;
}
.datepicker-btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  height: 32px;
  background: transparent;
  color: #909090;
  font-size: 13px;
  font-weight: 600;
  padding: 0;
}
.datepicker-btn i {
  margin-right: 4px;
}
.datepicker-btn.active {
  border-color: var(--bs-primary);
  background-color: var(--bs-primary);
  color: #fff;
}
.datepicker-btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/assets/common/img/arrow-bottom-gray.svg) no-repeat center;
  background-size: 16px;
}
.datepicker-btn.active::after {
  display: none;
  /* content: "\f01e";
  font-family: "Font Awesome 6 Free";
  background: none;
  font-weight: 400; */
}
.input-datepicker .datepicker {
  width: 100%;
  padding: 0;
}
.input-datepicker .datepicker table {
  width: 100%;
}
.input-datepicker .datepicker th,
.input-datepicker .datepicker td {
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex: 1; */
  height: 36px;
  font-size: 16px;
  border-radius: 99px;
}
.datepicker .next,
.datepicker .prev {
  width: 36px;
}
.input-datepicker .datepicker td.today {
  background: #e5e5e5 !important;
}
.input-datepicker .datepicker td.active,
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background: var(--bs-primary) !important;
}
.datepicker .date-arrow::after {
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  font-size: 16px;
}
.datepicker .date-arrow-left::after {
  content: "\f104";
}
.datepicker .date-arrow-right::after {
  content: "\f105";
}
.map-pin-title {
  padding: 4px 8px;
  border-radius: 99px;
  border: 1px solid var(--bs-primary);
  text-align: center;
  width: 100%;
}
.map-box {
  position: relative;
  margin-bottom: 16px;
}
.map-box::after {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.map-box #map {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.map-info-box {
  margin: 0;
}
.map-info-box dt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-weight: 600;
  color: #505050;
  font-size: 15px;
}
.map-info-box dd {
  font-size: 14px;
  font-weight: 600;
  color: #909090;
  margin-bottom: 0;
  margin-top: 10px;
}
.map-info-box .btn-clipboard {
  display: inline-block;
  flex: none;
  font-size: 15px;
  color: var(--bs-primary);
  font-weight: 600;
  flex: none;
  margin-left: 12px;
}
.map-info-box .txt {
  display: inline-block;
  position: relative;
  padding-left: 24px;
}
.map-info-box .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.map-info-box .icon.map {
  background-image: url(/assets/common/img/map-pin3.svg);
  background-size: 12px;
}
.map-info-box .icon.walk {
  background-image: url(/assets/common/img/walk-icon.svg);
}
.map-info-box .icon.bus {
  background-image: url(/assets/common/img/bus-icon.svg);
}
.map-info-box .icon.subway {
  background-image: url(/assets/common/img/subway-icon.svg);
}
.mapSearch-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 126.7px);
}
.mapSearch-wrap.mapSearch-wrap2 {
  height: calc(100vh - 72px);
}
.mapSearch-wrap #map {
  width: 100%;
  height: 100%;
}
.mapSearch-wrap .location-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 99px;
  font-size: 20px;
  z-index: 2;
  border: 0;
  padding: 0;
}
.mapSearch-wrap .setting-complete {
  position: absolute;
  bottom: 94px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}
.setting-complete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  height: 40px;
  border-radius: 10px;
  background-color: var(--bs-primary);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border: 0;
  padding: 0;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
}
.mapSearch-wrap .current-location {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-block;
  background: rgba(81, 136, 126, 0.8);
  padding: 5px 6px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
  line-height: 1;
}
.mapSearch-wrap .marker_click_div {
  position: absolute;
  z-index: 2;
  bottom: 6%;
  left: 0;
  width: 100%;
  padding: 0 16px;
}
.company-info-btn {
  display: inline-block;
  padding: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  background-color: #595959;
  border-radius: 4px;
  border: 0;
}
.company-info-btn.active {
  background-color: var(--bs-primary);
  color: #fff;
}
.company-marker-close {
  position: absolute;
  right: 20px;
  top: -28px;
  background-color: #202020;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 99px;
  border: 0;
  padding: 0;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.youtube-box {
  position: relative;
}
.youtube-box::after {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.youtube-box figure {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.youtube-box .youtube_img {
  width: 100%;
  height: 100%;
}
.youtube-box .youtube_img [data-id]::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.youtube-box .youtube_img .thumb-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.youtube-box .youtube_img .play::after {
  content: "\f144";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: calc(2vw + 50px);
  cursor: pointer;
}

.bottom-fixed-container {
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 100%;
  max-width: 480px;
  padding: 20px 16px;
  background: #fff;
}
.error-box {
  padding: 0 16px;
}
.coupon-box {
  margin: 16px 0;
}
.coupon-btn {
  display: flex;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
}
.coupon-btn .txt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #ffe1e1;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ff0000;
}
.coupon-btn .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 48px;
  height: 40px;
  flex: none;
  background: #ffe1e1;
  border-radius: 8px;
}
/* .coupon-btn .icon::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: -1px;
  border-left: 1px dashed #fff;
} */
.coupon-list > li + li {
  margin-top: 16px;
}
.coupon-list-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 16px 16px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}
label.coupon-list-item {
  cursor: pointer;
}
.coupon-list input[type="radio"]:checked + label,
.coupon-list input[type="checkbox"]:checked + label {
  background-color: #dfeced;
  border-color: var(--bs-primary);
}
.coupon-list-item .info {
  flex: 1;
}
.coupon-list-item .price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.coupon-list-item .info .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--bs-primary);
}
.coupon-list-item .price-box .price {
  margin-bottom: 0;
}
.coupon-list-item .info .tit {
  font-size: 14px;
  font-weight: 600;
  color: #505050;
}
.coupon-list-item .info .txt {
  font-size: 13px;
  font-weight: 500;
  color: #909090;
}
.coupon-list-item .info .date {
  font-size: 13px;
  font-weight: 500;
  color: #909090;
}
.coupon-list-item .coupon-state-txt {
  font-size: 14px;
  color: #909090;
  font-weight: 500;
  flex: none;
  margin-left: 12px;
}
.coupon-download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 99px;
  background-color: #dfeced;
  flex: none;
}
.coupon-download.active {
  background-color: #eee;
  color: #909090;
  pointer-events: none;
}
.ck-acon .ck-acon-item {
  background: #dfeced;
  border-radius: 5px;
}
.ck-acon-btn {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  text-align: left;
  padding: 8px 52px 8px 16px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: #202020;
}
.ck-acon-btn::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.ck-acon-btn:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}
.ck-acon-body {
  padding: 0px 16px 8px;
}
.dot-list > li {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  color: #505050;
}
.dot-list > li + li {
  margin-top: 4px;
}
.dot-list > li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #505050;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 4px;
}
.notify-box {
  font-size: 13px;
  border-radius: 5px;
  color: #202020;
  padding: 8px 16px;
  background: #ffe1e1;
  font-weight: 600;
}
.notify-list-box {
  padding: 12px;
  border-radius: 10px;
  background-color: #f5f5f5;
}
.notify-list-box ul li {
  position: relative;
  padding-left: 8px;
  font-size: 13px;
  color: #505050;
}
.notify-list-box li + li {
  margin-top: 6px;
}
.notify-list-box ul li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #909090;
  position: absolute;
  left: 0;
  top: 7px;
}
.decimal-list {
  padding-left: 12px;
  font-size: 13px;
  list-style: decimal;
  color: #505050;
}
.decimal-list li + li {
  margin-top: 12px;
}
.result-info-list > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.result-info-list > li + li {
  margin-top: 8px;
}
.result-info-list .tit {
  display: inline-block;
  font-weight: 600;
  color: #505050;
  width: 30%;
  min-width: 110px;
  flex: none;
}
.result-info-list .txt {
  text-align: right;
  flex: 1;
  font-weight: 500;
  color: #909090;
}
.result-info-list .price {
  font-weight: 700;
  color: var(--bs-primary);
}
.nomal-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-primary);
  background-color: #dfeced;
  border-radius: 5px;
  padding: 0 16px;
  height: 42px;
}
.theme-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background-color: var(--bs-primary);
  border-radius: 5px;
  padding: 0 16px;
  height: 42px;
}
.payment-type-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  margin-top: 8px;
  width: calc(100% + 6px);
}
.payment-type-list .payment-type {
  height: 48px;
  line-height: 46px;
  margin: 0 6px 8px 0;
  position: relative;
  text-align: center;
}
.payment-type input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.payment-type label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  color: #202020;
}
.payment-type input:checked + label {
  background-color: #dfeced;
  border-color: #000;
}
.confirm-section {
  padding-top: 154px;
  text-align: center;
}
.confirm-title {
  font-size: 32px;
  font-weight: 600;
  color: #202020;
}
.confirm-img-box {
  text-align: center;
  padding: 32px 0;
}
.confirm-txt-box p {
  font-size: 16px;
  font-weight: 600;
  color: #505050;
  margin-bottom: 8px;
}
.confirm-txt-box span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #909090;
  margin-bottom: 8px;
}

/* 검색 */
.header-search-box {
  display: flex;
  align-items: center;
  flex: 1;
  height: 36px;
  position: relative;
  padding: 10px 13px 10px 38px;
  font-size: 13px;
  border-radius: 15px;
  font-weight: 600;
  color: #909090;
  border: 1px solid #e7e7e7;
}
.header-search-box button {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 0;
  z-index: 1;
}
.header-search-box input {
  width: calc(100% - 28px);
  outline: none;
  height: 20px;
  border: none;
  background: transparent;
  font-size: 14px;
  line-height: 20px;
  color: rgb(32, 36, 41);
}

.recent-search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px 16px;
}
.recent-search-box .recent-search-title {
  font-size: 15px;
  font-weight: 600;
  color: #505050;
  white-space: nowrap;
}
.recent-search-box .recent-search-delete {
  background: none;
  flex: none;
  font-size: 15px;
  border: 0;
  font-weight: 600;
  color: #505050;
}
.search-result-list > li {
  border-bottom: 1px solid #e7e7e7;
}
.search-result-link {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: #202020;
  padding: 18px 16px;
}
.search-result-link.location::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(/assets/common/img/map-pin3.svg) no-repeat center;
  background-size: 11px;
  margin-right: 4px;
}
.search-result-link.building::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(/assets/common/img/building-icon.svg) no-repeat center;
  margin-right: 4px;
}

/* 게시판 */
.noti-list {
  border-top: 1px solid #f1f1f1;
}
.noti-list > li {
  border-bottom: 1px solid #f1f1f1;
}
.noti-list > li > a {
  position: relative;
  display: block;
  padding: 20px;
  padding-right: 54px;
}
.noti-list > li > a:hover {
  background-color: #f9f9f9;
}
.noti-list > li > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(/assets/common/img/arrow-right-gray.svg) no-repeat center;
  background-size: 8px;
}
.noti-info .noti-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
}
.noti-info .noti-date {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #909090;
}
.board-view-header {
  position: relative;
  padding: 16px 16px 20px;
  border-top: 1px solid #e7e7e7;
}
.board-view-category {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.board-view-category .status-item {
  display: inline-block;
  font-size: 13px;
  background-color: #212121;
  color: #fff;
  padding: 2px 6px;
}
.board-view-category .board-view-category-item {
  font-size: 15px;
  color: #767676;
}
.board-view-category
  .board-view-category-item
  + .board-view-category-item::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #000;
  vertical-align: middle;
  margin: 0 6px;
  opacity: 0.3;
}
.board-view-title {
  font-size: 15px;
  font-weight: 600;
}
.board-view-info {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.board-view-info .board-view-info-item {
  margin-top: 4px;
  position: relative;
  font-size: 13px;
  color: #909090;
}
.board-view-info .board-view-info-item::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 49%;
  background-color: #ccc;
  margin: 0 8px;
}
.board-view-info .board-view-info-item:last-child::after {
  display: none;
}
.board-menu-dorpdown {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0px;
}
.board-menu-dorpdown .board-menu-dropdown-btn {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 24px;
  outline: none;
  border: 0;
  background: none;
  transition: transform 0.2s ease-in-out;
}
.board-menu-dorpdown.open .board-menu-dropdown-btn {
  /* position: absolute; */
  transform: rotate(90deg);
}
.board-menu-dorpdown .dropdown-menu {
  padding: 8px 0;
  border-radius: 0px;
  box-shadow: 0px 2px 6px rgb(0 0 0 / 12%);
}
.board-menu-dorpdown .dropdown-menu .dropdown-item a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  transition: 0s;
  color: #000;
}
.board-view-body {
  padding: 0 16px 20px;
}
.board-view-body .viewContent {
  width: 100%;
  display: inline-block;
  padding: 25px;
  font-size: 13px;
}
.board-view-body .viewContent table {
  width: 100% !important;
}
.board-view-body .viewContent img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}

.board-view-body .article-editor video {
  max-width: 100%;
}
.board-view-body .article-editor {
  font-size: 15px;
}
.article-editor * {
  word-break: break-all;
}
.article-editor .media {
  position: relative;
}
.article-editor .youtube_img {
  width: 100%;
  padding-bottom: 56.25%;
}
.article-editor .play::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  cursor: pointer;
}

.article-editor .play::after {
  content: "\f144";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 80px;
  color: #fff;
  cursor: pointer;
}

.article-editor .thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.view-download-list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
}
.view-download-list .view-download-tit {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
  color: #909090;
}
.view-download-list .view-download-box {
  flex: 1;
}
.view-download-list .view-download-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 8px 12px;
  background-color: #f5f5f5;
  border-radius: 5px;
  margin-bottom: 8px;
  word-break: break-all;
}
.view-download-list .view-download-item .file-name {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.view-download-list .view-download-item i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.view-download-list .view-download-item .file-size {
  font-weight: 400;
  flex: none;
  margin-left: 4px;
  color: #909090;
}
.view-tag {
  display: flex;
  position: relative;
  margin-top: 12px;
  gap: 4px;
}
.view-tag .view-tag-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  font-size: 12px;
  background-color: #eee;
  border-radius: 0px;
  border-radius: 99px;
  padding: 0 12px;
  color: #000;
}
.edit-group-wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: end;
  margin-bottom: 30px;
}
.edit-group-wrap .edit-group-btn {
  font-size: 16px;
  padding: 0;
  color: #979797;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  line-height: 1.4;
}
.edit-group-wrap .edit-group-btn + .edit-group-btn {
  margin-left: 15px;
}
.edit-group-wrap .edit-group-btn span {
  font-weight: 400;
  margin-left: 5px;
}
.edit-group-btn.delete:hover {
  color: #fe2727;
}
.edit-group-btn.edit:hover {
  color: #1ad364;
}
.view-pagination {
  margin-top: 40px;
  text-align: center;
}
.view-pagination .view-pagination-btn {
  display: inline-block;
  min-width: 200px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  background-color: #000;
  color: #fff;
  line-height: 56px;
  height: 56px;
  border-radius: 0px;
}
.view-pagination .view-pagination-btn:hover {
  background-color: #000;
}
.view-pagination .view-pagination-nav a {
  position: relative;
}
.view-pagination .view-pagination-nav .txt {
  font-size: 21px;
  font-weight: 700;
  color: #979797;
  transition: color 0.2s ease-in-out;
}
.view-pagination .view-pagination-nav .hide-txt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 5px;
  font-size: 18px;
  font-weight: 500;
  opacity: 0;
  transition: 0.2s ease-in-out;
  transform: translateY(5px);
}
.view-pagination .view-pagination-nav a:hover .hide-txt {
  opacity: 1;
  transform: translateY(0);
}
.view-pagination .view-pagination-nav a:hover .txt {
  color: #212121;
}
.view-pagination .view-pagination-prev {
  flex: 1 0 auto;
  width: 50%;
  padding-right: 70px;
}
.view-pagination .view-pagination-next {
  text-align: right;
  flex: 0 0 auto;
  width: 50%;
  padding-left: 70px;
}
.view-pagination .view-pagination-prev i {
  margin-right: 8px;
}
.view-pagination .view-pagination-next i {
  margin-left: 8px;
}
.view-navigator {
  position: relative;
  border-top: 1px solid #e5e5e5;
}
.view-navigator .view-navigator-link {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  border-bottom: 1px solid #e5e5e5;
}
.view-navigator .view-navigator-tit {
  font-weight: 700;
  flex: none;
  width: 114px;
  text-align: center;
}
.view-navigator .view-navigator-txt {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
/* 리뷰 */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
.myReview-box {
  position: relative;
  background-color: #fafafa;
  border-radius: 10px;
  padding: 16px;
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.review-header .date {
  font-size: 15px;
  font-weight: 600;
  color: #505050;
}
.review-header button {
  display: inline-flex;
  width: 24px;
  height: 24px;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  color: #505050;
}
.review-body {
  display: flex;
}
.review-body .visual {
  width: 32%;
  min-width: 90px;
  max-height: 240px;
  flex: none;
}
.review-body .info {
  display: flex;
  margin-left: 12px;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  /* -webkit-box-pack: justify;
  justify-content: space-between; */
}
.review-body .info .tit-box .tit {
  font-size: 15px;
  font-weight: 600;
  color: #505050;
}
.review-body .info .tit-box .txt {
  font-size: 13px;
  font-weight: 500;
  color: #909090;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.review-body .info .program-detail {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #909090;
}
.review-footer {
  margin-top: 8px;
}
.review-footer .memo {
  font-size: 14px;
  font-weight: 500;
  color: #505050;
}
.review-list .writer {
  font-size: 14px;
  color: #909090;
  font-weight: 600;
  margin-bottom: 2px;
}
.answer-box {
  position: relative;
  background-color: #DFECED;
  border-radius: 10px;
  padding: 16px;
  margin-top: 8px;
}
.answer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.answer-header .tit {
  font-size: 15px;
  font-weight: 700;
  color: #505050;
}
.answer-header .date {
  font-weight: 600;
  color: #505050;
  font-size: 13px;
}
.answer-body .memo {
  font-size: 14px;
  font-weight: 500;
  color: #505050;
}
.grade-wrap {
  padding: 16px 0 24px;
}
.grade-total-tit {
  font-size: 16px;
  font-weight: 600;
  color: #505050;
  margin-bottom: 12px;
}
.grade-total-tit span {
  font-weight: 500;
}
.grade-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.grade-total {
  display: flex;
  align-items: center;
}
.grade-total .star {
  font-size: 32px;
  margin-right: 8px;
}
.grade-total .num {
  font-size: 20px;
  font-weight: 600;
  color:#505050;
}
.grade-total .num b {
  font-size: 36px;
  font-weight: 600;
}
.grade-each {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 8px 0;
}
.grade-each-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #505050;
}
/* .grade-each-item .txt {

} */
.grade-each-item .bar {
  position: relative;
  flex: 1;
  height: 10px;
  background: #f1f1f1;
  margin: 0 10px;
  max-width: 160px;
}
.grade-each-item .bar .gauge {
  position: absolute;
  display: block;
  left: 0;
  height: 100%;
  background-color: #FFE500;
}
/* 버튼 */
[class*="btn-theme-"] {
  display: flex;
  padding: 0 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: var(--bs-primary);
  border-radius: 5px;
  font-weight: 600;
  border: 0;
}
.btn-theme-32 {
  font-size: 13px;
  height: 32px;
}
[class*="btn-theme-"]:hover,
[class*="btn-theme-"]:focus,
[class*="btn-gray-"]:hover,
[class*="btn-gray-"]:focus {
  color: #fff;
}
[class*="btn-gray-"] {
  display: flex;
  padding: 0 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: #909090;
  border-radius: 5px;
  font-weight: 600;
  border: 0;
}
.btn-gray-32 {
  height: 32px;
  font-size: 13px;
}
a[class*="btn-theme-"][disabled],
button[class*="btn-theme-"]:disabled,
a[class*="btn-gray-"][disabled],
button[class*="btn-gray-"]:disabled {
  background-color: #cbcbcb;
  pointer-events: none;
  cursor: default;
  color: #fff;
}
.sort-box {
  margin-bottom: 10px;
}
.sort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  color: #505050;
  padding: 4px 4px 4px 0;
  gap: 4px;
}
.sort-btn i {
  font-size: 16px;
  display: inline-block;
}