@charset "UTF-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css'); /* font-family: 'Pretendard'; */
@import url('https://fonts.cdnfonts.com/css/poppins'); /*font-family: 'Poppins', sans-serif; */
html,
body {
  max-width: 1028px;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
  overflow-x: hidden;
  font-family: 'Pretendard';
  letter-spacing: -1px;
  color: #222;
}

html {
  margin: 0 auto;
}

body {
  position: relative;
}
/*input number버튼 없애기*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.point_txt {
  color: var(--color-main) !important;
  font-weight: 800;
}

.cancel_txt {
  color: #c11212;
  font-weight: 800;
  display: inline-block;
  margin-top: -3px;
}

/*250613|jskim|boldtext 추가*/
.bold_txt_800 {
  font-weight: 800;
  vertical-align: baseline;
}
.red_txt {
  color: #c11212 !important;
}

.green_txt {
  color: var(--color-sub) !important;
}

.blue_txt {
  color: var(--color-accent) !important;
}

.ui-menu-item-wrapper b {
  color: #cb0a0a;
  display: inline-block;
  margin-top: -1px;
}

/* radio custom */
.control {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  font-size: 14px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 15px;
  width: 15px;
  background: #e6e6e6;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}

.control input:checked ~ .control__indicator {
  background: var(--color-sub);
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: var(--color-sub);
}

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.control input:checked ~ .control__indicator:after {
  display: block;
}
/* Checkbox tick */
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}
.control--checkbox .control__indicator:after {
  top: 2px;
  left: 6px;
  width: 3px;
  height: 8px;
  transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

/* Disabled tick colour */
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}

.control--radio .control__indicator:after {
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--color-sub);
  box-sizing: border-box;
}

.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.radio-tile-group {
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  margin-top: 10px;
  overflow-x: scroll;
  width: 100%;
  padding-bottom: 6px;
}
/* 25.07.10 | jskim | 자음필터 수정 */
.radio-tile-group.cons {
  margin-top: 0;
  margin: 0.7rem 0 1rem;
}
.radio-tile-group.cons > .input-container:not(:first-child) {
  padding: 0 0.5rem;
}

.radio-tile-group .input-container {
  position: relative;
  height: 32px;
  /*width: calc(25% - 10px);*/
  margin-right: 3px;
  white-space: nowrap;
}
.radio-tile-group.cons .input-container {
  height: 24px;
}

.radio-tile-group .input-container .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-group .input-container .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #d9d9d9;
  border-radius: 20px;
  padding: 1rem;
}

.radio-tile-group .input-container .radio-tile-label {
  text-align: center;
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--color-main);
  white-space: nowrap;
  word-break: keep-all;
}
.radio-tile-group.cons .input-container .radio-tile-label {
  color: #9c9c9c;
  font-weight: 500;
  display: block;
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile {
  background-color: var(--color-main);
  border: 2px solid var(--color-main);
  color: var(--color-white);
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
  color: var(--color-white);
}
/* 25.07.10 | jskim | 자음필터 수정 */
.radio-tile-group.cons .input-container .radio-button:checked + div .radio-tile-label {
  border-bottom: 1px solid var(--color-main);
  font-weight: 800;
  color: var(--color-main);
}
/* 25.08.01 | tsnam | grid 격자형 radio-tile 추가 */
.radio-grid {
  width: 100%;
  border-radius: 6px;
  border: 0.5px solid #d9d9d9;
  overflow: hidden;
  margin-top: 5px;
}

.radio-cell {
  position: relative;
  border: 0.5px solid #d9d9d9;
}

.radio-cell .radio-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-cell .radio-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20px;
  padding: 8px;
  transition: all 0.2s ease;
}

.radio-cell .radio-label {
  text-align: center;
  font-size: var(--font-size-sm);
  font-weight: 500;
  white-space: nowrap;
}

.radio-cell .radio-input:checked + .radio-tile {
  background-color: var(--color-main);
}
.radio-grid.table-style .radio-cell .radio-label {
  font-weight: bold;
}
.radio-cell .radio-input:checked + .radio-tile .radio-label {
  font-weight: bold;
  color: var(--color-white);
}
/* =========================
테이블 스타일 (진료과, 의사 등)
========================= */
.radio-grid.table-style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(20px, auto);
}

/* =========================
초성 그리드 스타일
========================= */
.radio-grid.consonant-style {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

/* 전체 버튼 - 3행에 걸쳐 세로로 길게 */
.radio-cell.all-select {
  grid-row: 1 / 4;
  grid-column: 1 / 2;
}

.radio-cell.all-select .radio-tile {
  height: 100%;
}

/* 빈 셀 스타일 */
.radio-cell.empty {
  background-color: transparent;
}

.radio-cell.empty .radio-tile {
  background-color: transparent;
  cursor: default;
}
/* 25.07.01 | tsnam | radio tile 작은버전 추가 */

.y-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(calc(var(--vh, 1vh) * 100) - 240px);
}
.x-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap !important;
}
/* 예약취소사유 radio button */
.switch-field {
  display: flex;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
/*250613|jskim|예약화면 disabled 추가*/
.switch-field input:disabled + label {
  opacity: 0.4;
  color: rgba(0, 0, 0, 0.4);
}
.switch-field label {
  width: 100%;
  background-color: var(--color-btn);
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px rgba(208, 208, 208, 0.1);
  transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
  cursor: pointer;
}

.switch-field input:checked + label {
  background-color: var(--color-sub);
  color: var(--color-white);
  box-shadow: none;
}

.switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}

/* btn */
.fixed-btn-wrap {
  position: fixed;
  bottom: 48px;
  left: 50%;
  background: #fff;
  width: 100%;
  padding: 0 4rem;
  max-width: 1028px;
  transform: translateX(-50%);
  display: flex;
  margin-top: 12px !important;
  gap: 5px;
  padding: 11px 2rem;
}

.fixed-btn-wrap > button {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.5px;
}

.btn_area {
  width: 100%;
  height: 30px;
  margin-top: 10px;
  display: inline-block;
  clear: both;
}
.input-info {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 14px;
}
.input-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.input-wrap > .privacy_3 {
  width: calc(100% - 100px);
}
.btn_multi_area {
  width: 100%;
  height: 30px;
  margin-top: 5px;
  display: flex;
  gap: 4px;
}
.radio-choice {
  height: 36px;
  margin: 0;
}
.radio-choice .btn_small {
  padding: 0;
  margin: 0;
}
.radio-choice .btn_small .label-wrap {
  font-size: 14px;
  position: relative;
  display: inline-block;
}
.radio-choice .btn_small .label-wrap .control__indicator {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.radio-choice .btn_small:has(input:checked) {
  border-color: var(--color-sub);
  outline: 1px solid var(--color-sub);
}

.btn_small {
  width: 100px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 14px;
  background-color: var(--color-white);
  color: var(--color-black);
  text-align: center;
  line-height: 30px;
  box-sizing: border-box;
  font-weight: 600;
}

.btn_small:disabled {
  border: 1px solid #d9d9d9;
  color: var(--color-black);
}

.btn_small:hover,
.btn_small:focus,
.btn_small:active {
  border: 1px solid var(--color-gray);
  background-color: var(--color-btn);
}

.btn_multi {
  width: 100%;
}

.btn_disable {
  border: 1px solid #ccd0d4;
  background-color: var(--color-disabled);
  color: var(--color-white);
}

.btn_disable:hover {
  background-color: #c4cbd1;
  border-color: #7e7e7e;
  color: #fff;
}

.btn_small2 {
  display: block;
  width: 100px;
  text-align: center;
  box-sizing: border-box;
  float: right;
  font-size: 14px;
  color: var(--color-white);
  border-radius: 5px;
  background-color: var(--color-main);
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.3px;
}

.btn_small2:disabled {
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.3;
}

.btn_small2:hover:not(:disabled),
.btn_small2:focus:not(:disabled),
.btn_small2:active:not(:disabled) {
  background-color: var(--color-disabled);
}

.btn_choice {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  clear: both;
  margin-top: 20px;
  font-size: 18px;
  color: var(--color-white);
  border-radius: 8px;
  background-color: var(--color-main);
  font-weight: 600;
  line-height: 46px;
}

.btn_choice:disabled {
  color: var(--color-white);
  background-color: var(--color-main);
}

.btn_choice:hover,
.btn_choice:focus,
.btn_choice:active {
  background-color: var(--color-main-hover);
}

.btn_second {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  clear: both;
  margin-top: 5px;
  font-size: 18px;
  color: var(--color-main);
  border-radius: 8px;
  border: 1px solid var(--color-main);
  font-weight: 600;
  line-height: 46px;
}

.btn_second:disabled {
  color: var(--color-main);
  border: 1px solid var(--color-main);
}

.btn_second:hover,
.btn_second:focus,
.btn_second:active {
  border: 1px solid var(--color-main-hover);
  color: var(--color-main-hover);
  background: var(--color-btn);
}

/*logo*/

/* layout */
#wrap {
  height: calc(var(--vh, 1vh) * 100);
}

header {
  width: 100%;
  height: 290px;
  color: var(--color-white);
  text-align: left;
  position: relative;
}

header > h1 {
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  position: relative;
  z-index: 3;
}

header > h1 > a > span {
  font-size: 16px;
  color: var(--color-sub);
  margin-left: 3px;
}

header > h1 > a {
  display: block;
  height: 5.5vw;
  max-height: 30px;
  min-height: 20px;
}

header > h1 > a > img {
  height: 100%;
}

header h1 img.white-logo {
  display: none;
}

header .bg-img {
  width: 100%;
  height: 290px;
  position: absolute;
  left: 0;
  top: 0;
  animation: grayscale 1.5s forwards;
  animation-delay: 0.7s;
  background-position: center !important;
}

header .bg-cover {
  content: '';
  width: 100%;
  height: 290px;
  background-color: var(--color-bg);
  position: absolute;
  left: 0;
  top: 0;
  animation: opacityAni 2s forwards;
  animation-delay: 0.7s;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: multiply;
}

/* menu */
nav {
  position: relative;
  left: 0;
  top: 0;
}

#menuToggle {
  width: 100%;
  height: 40px;
  top: 20px;
  left: 20px;
  display: block;
  position: absolute;
  z-index: 3;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  left: -10px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: var(--color-white);
  border-radius: 1px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition:
    transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  border-radius: 1px;
  transform: rotate(45deg) translate(0px, 3px);
  background: var(--color-white);
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0px, -1px);
}

#menu .favorite_menu {
  margin-bottom: 10px;
}

#menu .favorite_menu li {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 3px;
  line-height: 22px;
  border-radius: 30px;
  background-color: var(--color-white);
  font-size: var(--font-size-sm);
}

#menu .favorite_menu li a {
  color: var(--color-black);
  transition: color 0.3s ease;
  font-weight: 400;
}

#menu .favorite_menu li a:hover {
  color: var(--color-sub);
}

#menu {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(var(--vh, 1vh) * 100);
  margin: -100px 0 0 -50px;
  padding: 50px 20px 50px 50px;
  text-align: left;
  padding-top: 125px;
  background: var(--color-sub);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu p {
  font-size: var(--font-size-sm);
  font-weight: 600;
}

#menu > li a {
  display: block;
  opacity: 0.7;
  text-align: left;
  line-height: 70px;
  border-bottom: 1px solid #fff;
  font-weight: 100;
  font-size: var(--font-size-big);
  color: var(--color-white);
  transition: color 0.3s ease;
  background: url(../images/ico_last_page.svg) no-repeat center right;
}

#menu > li a:hover {
  opacity: 1;
}

#menuToggle input:checked ~ ul {
  transform: none;
}

/* menu */
/* footer */
footer {
  z-index: 100;
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  background-color: var(--color-white);
}

footer .copy_right {
  text-align: center;
  display: block;
  height: 10px;
  line-height: 10px;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  color: var(--color-gray);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

footer .footer_btn_area {
  display: flex;
  justify-content: space-around;
  width: 100%;
  border-top: 1px solid #d9d9d9;
  font-size: var(--font-size-min);
  height: 48px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: 0;
}

footer .footer_btn_area li {
  width: 100%;
  border-right: 1px solid #d9d9d9;
}

footer .footer_btn_area li:last-child {
  border-right: none;
}

footer .footer_btn_area a {
  display: block;
  background: var(--color-btn);
}

footer .footer_btn_area a:hover,
footer .footer_btn_area a:focus {
  background: var(--color-sub);
  color: var(--color-white);
}

footer .footer_btn_area span {
  margin-right: 3px;
  margin-top: -3px;
}

.main-bottom-wrap {
  position: absolute;
  bottom: 8px; /*240530_수정*/
  z-index: 2;
  width: calc(100% - 60px);
  left: 50%;
  transform: translateX(-50%);
}
/*240530_js수정*/
.main_homepage {
  width: 100%;
  font-weight: 800;
  text-align: left;
  font-size: var(--font-size-sm);
  color: var(--color-black);
  border-radius: 8px;
  padding: 12px 40px;
  background:
    url(../images/ico_home.svg) no-repeat center left 10px,
    url(../images/ico_chevron_right.svg) no-repeat center right 10px;
  background-color: var(--color-btn);
}

.main-bottom-wrap .clinic_list_sub {
  letter-spacing: 0.3px;
  font-size: 12px;
  font-weight: 700;
  color: #eaeaea;
  line-height: 16px;
  margin-bottom: 2px;
  text-align: center;
}

/* main */
.main_tit {
  font-size: var(--font-size-big);
  color: var(--color-white);
  padding: 50px 40px;
  font-weight: 100;
  line-height: max(2.5rem, min(7.5vw, 3.5rem));
  position: absolute;
  top: 50px;
  left: 0px;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.main_tit span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.main_cont {
  position: absolute;
  width: 100%;
  height: calc(calc(var(--vh, 1vh) * 100) - 220px);
  background-color: var(--color-white);
  font-size: var(--font-size-lg);
  padding: 3rem 4rem 2rem; /*240530_js수정*/
  border-radius: 40px 40px 0 0;
  box-sizing: border-box;
  top: 220px;
  z-index: 1;
}

.select_menu_tit {
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-black);
  width: 110px;
  margin: 0 auto;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  border-bottom: 3px solid var(--color-main);
  letter-spacing: 0;
}

.clinic_list {
  /*margin-top: 20px;*/
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(calc(var(--vh, 1vh) * 100) - 280px); /*240530_js수정*/
}
/*240530_js수정*/
.clinic_list li[class$='-icon'] a {
  margin-bottom: 15px;
  border-bottom: 1px solid #d9d9d9;
  background-repeat: no-repeat;
  background-position: right center;
  display: block;
}

.clinic_list li.clinic-icon a {
  background-image: var(--background-icon-01-clinic);
}
.clinic_list li.info-icon a {
  background-image: var(--background-icon-01-info);
}
.clinic_list li.hospital-icon a {
  background-image: var(--background-icon-01-hospital);
}
.clinic_list li.certificate-icon a {
  background-image: var(--background-icon-01-certificate);
}
.clinic_list li.visiting-icon a {
  background-image: var(--background-icon-01-visiting);
}
.clinic_list li.help-center-icon a {
  background-image: var(--background-icon-01-help-center);
}
.clinic_list li.call-icon a {
  background-image: var(--background-icon-01-call);
}
.clinic_list li.chatbot-icon a {
  background-image: var(--background-icon-01-chatbot);
}
.clinic_list li.reservation-icon a {
  background-image: var(--background-icon-01-resercation);
}

.clinic_list li.dummy-icon a {
  background-image: var(--background-icon-01-dummy);
}

.clinic_list .clinic_list_tit {
  color: var(--color-main);
  font-size: var(--font-size-lg);
  font-weight: 800;
}

.clinic_list .clinic_list_cont {
  color: var(--color-black);
  font-size: var(--font-size-sm);
  font-weight: 400;
}

.clinic_list .clinic_list_sub {
  color: var(--color-gray);
  font-size: var(--font-size-min);
  font-weight: 600;
  margin: 10px 0 10px;
}
.clinic_list .clinic_icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* sub */
.sub_cont {
  position: absolute;
  width: 100%;
  min-height: calc(calc(var(--vh, 1vh) * 100) - 50px);
  background-color: var(--color-white);
  font-size: var(--font-size-lg);
  padding: 2rem 1rem 6rem;
  border-radius: 40px 40px 0 0;
  box-sizing: border-box;
  top: 50px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.sub_tit {
  font-size: var(--font-size-lg);
  padding: 0 10px;
}

.sub_txt {
  font-size: var(--font-size-min);
}

.sub_cont_scroll {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(calc(var(--vh, 1vh) * 100) - 140px);
  margin-top: 10px;
  top: 260px;
}

.scroll_short {
  height: calc(calc(var(--vh, 1vh) * 100) - 420px);
  top: 420px;
}

.search_area {
  margin-top: 10px;
  display: flex;
}

/*.search_area input { width: calc(100% - 20px); right: 0; padding: 10px 0px; background-color: transparent; line-height: 18px; border-bottom: 2px solid #363636; background: url(../images/ico_search.svg) no-repeat right; font-family: 'Pretendard'; color: var(--color-black); font-size: var(--font-size-md); font-weight: 400; }*/
.search_area input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  width: calc(100% - 20px);
  right: 0;
  padding-left: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: transparent;
  line-height: 18px;
  border: 2px solid #363636;
  border-radius: 36px;
  background: url(../images/ico_search.svg) no-repeat 10px center;
  font-family: 'Pretendard';
  color: var(--color-black);
  font-size: var(--font-size-md);
  font-weight: 400;
}

.search_area input::placeholder {
  font-family: 'Pretendard';
  color: var(--color-gray);
  font-size: var(--font-size-md);
  font-weight: 400;
}

.search_area input[type='checkbox'] {
  display: none;
}

.search_area input[type='checkbox'] + label {
  display: inline-block;
  width: 18px;
  height: 28px;
  border-bottom: 2px solid #fff;
  position: relative;
  left: 0;
  top: 10px;
  font-family: 'Pretendard';
  color: var(--color-black);
  font-size: var(--font-size-md);
  font-weight: 400;
}

.search_area input[type='checkbox'] + label::after {
  content: '#';
  width: 18px;
  height: 28px;
  text-align: center;
  position: absolute;
  left: 0;
  color: var(--color-disabled);
}

.search_area input[type='checkbox']:checked + label::after {
  color: var(--color-black);
}

.search_w100 input {
  width: 100%;
}

.search_btn {
  width: 25px;
  height: 25px;
  cursor: pointer;
  align-self: center;
  background: url(../images/magnifying-glass-solid.svg) no-repeat center;
}

.content_list_area {
  margin-top: 10px;
}

.content_list_area ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  gap: 2px;
}

.content_list_area ul li {
  background-color: var(--color-btn);
  font-size: var(--font-size-sm);
  width: calc(50% - 4px);
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  margin-top: 7px;
  min-height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.content_list_area ul li a {
  display: block;
  color: var(--color-black);
  word-break: break-all;
  word-wrap: break-word;
}

.content_list_area ul li:hover a {
  color: var(--color-sub);
}

.content_list_area .answer_area {
  padding: 22px 20px;
  border-radius: 8px;
  background-color: var(--color-btn);
  color: var(--color-black);
  font-size: var(--font-size-sm);
}

/* .content_list_area .answer_area p:not(:first-child) { margin-top: 10px; }  */
.survey_list_area {
  margin-top: 20px;
}

.survey_list_area ul li {
  color: var(--color-black);
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-bottom: 20px;
}

.content_tit {
  color: var(--color-main);
  font-size: var(--font-size-md);
  font-weight: 800;
  display: flex;
  line-height: 30px;
}

.content_tit2 {
  color: var(--color-main);
  font-size: 19px;
  font-weight: 800;
}

.content_tit_txt {
  margin-left: 10px;
}

.content_answer {
  width: 100%;
  height: 40px;
  margin-top: 10px;
}
.content_answer:has(.choice-radio) {
  margin-top: 0;
}

.content_answer label {
  font-size: var(--font-size-sm);
  top: 0px;
  padding-left: 18px;
}

.content_answer label:last-child {
  margin-left: 20px;
}

.answer_tit {
  display: inline-block;
  margin-top: 6px;
  height: 35px;
  color: var(--color-accent);
  font-size: var(--font-size-md);
  font-weight: 800;
}

.answer_cont,
.choice-radio {
  display: inline-block;
  width: calc(100% - 40px);
  height: 35px;
  margin-left: 10px;
  border-bottom: 1px solid #d9d9d9;
}
.choice-radio {
  margin: 0;
  height: 60px;
  padding: 10px 0;
  display: flex;
  width: 100%;
}
.choice-radio .control {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.choice-radio .control .control__indicator {
  top: 50%;
  transform: translateY(-50%);
}
.phone_forward {
  margin: 5px 0 20px;
  float: right;
}

.phone_forward a {
  display: block;
}

.phone_forward img {
  vertical-align: middle;
  margin-right: 5px;
  width: 18px;
  height: 18px;
}

/* sub 즐겨찾기 */
.favorite_qna {
  width: 100%;
  display: block;
  margin-top: 5vh;
  font-weight: 700;
  text-align: left;
  clear: both;
}

.favorite_qna p {
  color: var(--color-main);
  font-size: var(--font-size-sm);
  margin-bottom: 5px;
  font-weight: 900;
}

.favorite_qna li {
  padding: 12px;
  margin-bottom: 4px;
  line-height: var(--font-size-sm);
  background-color: var(--color-main);
  position: relative;
}

.favorite_qna li::after {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/ico_chevron_right.svg) no-repeat;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(100%) saturate(7473%) hue-rotate(128deg) brightness(121%) contrast(119%);
}

.favorite_qna li a {
  display: block;
  color: var(--color-white);
  font-size: var(--font-size-sm);
}

.favorite_qna li:hover a {
  color: var(--color-accent);
}

.favorite_qna li:hover::after {
  filter: invert(72%) sepia(87%) saturate(1752%) hue-rotate(1deg) brightness(105%) contrast(104%);
}

/* sub 개인정보 */
.privacy_input {
  margin-top: 20px;
}

.privacy_input label {
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.privacy_in {
  width: 100%;
  padding: 10px 0px;
  background-color: transparent;
  line-height: 18px;
  border-bottom: 1px solid #d9d9d9;
  font-family: 'Pretendard';
  color: var(--color-black);
  font-size: var(--font-size-big);
  font-weight: 200;
}

.privacy_in::placeholder {
  font-family: 'Pretendard';
  color: var(--color-gray);
  font-size: var(--font-size-big);
  font-weight: 200;
}

.privacy_num {
  width: 100%;
  height: 50px;
  background-color: transparent;
  line-height: 50px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.privacy_1 {
  width: calc(50% - 12px);
  padding: 10px 0px;
  float: left;
  background-color: transparent;
  line-height: 18px;
  border-bottom: 1px solid #d9d9d9;
  font-family: 'Pretendard';
  color: var(--color-black);
  font-size: var(--font-size-big);
  font-weight: 200;
}

.privacy_1::placeholder {
  font-family: 'Pretendard';
  color: var(--color-gray);
  font-size: var(--font-size-big);
  font-weight: 200;
}

.privacy_2 {
  padding: 10px 0px;
  /* float: right; */
  background-color: transparent;
  line-height: 18px;
  border-bottom: 1px solid #d9d9d9;
  font-family: 'Pretendard';
  color: var(--color-black);
  font-size: var(--font-size-big);
  font-weight: 200;
}

.privacy_2::placeholder {
  font-family: 'Pretendard';
  color: var(--color-gray);
  font-size: var(--font-size-big);
  font-weight: 200;
}
/*241028_js추가*/
.identity-num {
  width: calc(50% - 12px);
  display: flex;
  gap: 5px;
}
.identity-num input {
  width: 30%;
  flex-grow: 1;
}
.identity-num .num-hide {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 70%;
}
.identity-num .num-hide li {
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 100px;
}
/*240909_js추가*/
.privacy_3 {
  /* float: right; */
  background-color: transparent;
  line-height: 18px;
  border-bottom: 1px solid #d9d9d9;
  font-family: 'Pretendard';
  color: var(--color-black);
  font-size: var(--font-size-big);
  font-weight: 200;
  border-radius: 0;
  position: relative;
  flex-grow: 1;
}
.privacy_3 > .ui-selectmenu-button.ui-button {
  padding: 10px 0;
  background-color: transparent;
  /* line-height: 18px; */
  font-family: 'Pretendard';
  color: var(--color-black);
  font-size: var(--font-size-big);
  font-weight: 200;
  border-radius: 0;
  width: auto;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
.privacy_3 .ui-button .ui-icon {
  transform: translateY(50%);
}
.input-wrap .btn_small {
  font-size: 13px;
  max-width: 100px;
  /* flex:0 0 auto; */
  background-color: var(--color-btn);
  border-color: #bbb;
}
.privacy_search {
  width: calc(100% - 110px);
  padding: 10px 0px;
  float: left;
  background-color: transparent;
  line-height: 18px;
  border-bottom: 1px solid #d9d9d9;
  font-family: 'Pretendard';
  color: var(--color-black);
  font-size: var(--font-size-big);
  font-weight: 200;
}

.privacy_search::placeholder {
  font-family: 'Pretendard';
  color: var(--color-gray);
  font-size: var(--font-size-big);
  font-weight: 200;
}
/*240909_js추가*/
.privacy_textarea {
  width: 100%;
  background: var(--color-btn);
  min-height: 170px;
  border: 0;
  outline: 0;
  font-family: 'Pretendard';
  font-size: var(--font-size-big);
  font-weight: 200;
  padding: 10px;
  resize: none;
}
.privacy_textarea::placeholder {
  font-family: 'Pretendard';
  color: var(--color-gray);
  font-size: var(--font-size-big);
  font-weight: 200;
}
.privacy_textarea ~ .text-count {
  font-size: var(--font-size-sm);
  line-height: 16px;
  margin-top: 4px;
}
/* sub 의료진 */
.fast_sort {
  width: 100%;
  height: 20px;
  margin: 20px 0;
}

.use_disable {
  opacity: 0.5;
}

.doctor_list_area > ul {
  display: flex;
  flex-direction: column;
}

.doctor_list_area ul {
  clear: both;
  /*margin-top: 10px;*/
}

.doctor_list_area .doctor_list {
  font-size: var(--font-size-md);
  display: inline-block;
  padding-bottom: 10px;
}

.doctor_list_area .doctor_list > ul {
  border-top: 1px solid #d9d9d9;
  padding-top: 30px;
}

.doctor_list_area .doctor_list:first-child > ul {
  border-top: none;
  padding-top: 0px;
}

.doctor_list > ul > li:nth-child(1) {
  float: left;
  text-align: center;
  margin-right: 20px;
  width: 90px;
}

.doctor_list > ul > li:nth-child(1) .doctor_info {
  margin-top: 5px;
}

.doctor_list > ul > li:nth-child(1) .doctor_name {
  font-size: var(--font-size-sm);
  color: var(--color-black);
  font-weight: 800;
}

.doctor_list > ul > li:nth-child(1) .doctor_title {
  font-size: var(--font-size-min);
  color: var(--color-white);
  background-color: var(--color-subtxt);
  border-radius: 14px;
  padding: 2px;
  margin-bottom: 25px;
}

.doctor_list > ul > li:nth-child(2) {
  float: left;
  width: calc(100% - 110px);
}

.doctor_list > ul > li:nth-child(2) p {
  color: var(--color-subtxt);
  font-size: var(--font-size-sm);
}

.clinic_tit {
  font-weight: 800;
  font-size: var(--font-size-sm);
  color: var(--color-black);
  margin: 4px 0;
  /*margin-top: 10px;*/
}

.clinic_tit span {
  font-weight: 400;
  display: inline-block;
  font-size: 12px;
  color: var(--color-black);
}

.fast_date {
  color: var(--color-main) !important;
  font-weight: 600;
  margin-top: 4px;
}

.doctor_list_area .date .sub-table {
  width: 100%;
  margin: 10px 0 15px 0;
  font-size: 15px;
  color: var(--color-subtxt);
  display: inline-table;
}

.doctor_list_area .date .sub-table thead {
  background: var(--color-btn);
  height: 22px;
}

.doctor_list_area .date .sub-table tbody tr {
  height: 28px;
  border-bottom: 1px solid #e7e7e7;
}

.doctor_list_area .date .sub-table td {
  padding: 0 5px;
}

/* sub 진료예약 */
.reservation_list_area {
  margin-top: 15px;
}

.reservation_list {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-gray);
}

.reservation_list ul {
  display: flex;
  font-size: var(--font-size-sm);
  width: 100%;
  text-align: left;
  align-content: center;
  gap: 10px;
  background-color: var(--color-btn);
  margin-bottom: 1px;
}

.reservation_list ul li {
  line-height: 20px;
  padding: 10px;
  word-break: break-all;
}

.reservation_list ul li:first-child {
  color: var(--color-subtxt);
}

.reservation_list ul li:last-child {
  font-weight: 800;
}

.reservation_list ul li:last-child span {
  display: inline-block;
  padding-left: 10px;
  color: #c11212;
  margin-top: -3px;
}

.caution {
  font-size: var(--font-size-sm);
  line-height: 22px;
}

/* sub 캘린더 */
.schedule-area {
  margin-top: 16px;
}

#calendar {
  border-bottom: 1px solid #e5e5e5;
  margin-top: 10px;
}

.time-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: left;
  gap: 2px;
  padding: 2px;
  margin-top: 10px;
}

.time-list-txt {
  cursor: pointer;
  width: 19%;
  min-width: 50px;
  padding: 5px 20px 5px 0px;
  font-size: var(--font-size-sm);
  color: var(--color-black);
  text-align: center;
  cursor: pointer;
}

.time-list-txt:active,
.time-list-txt:hover,
.time-list-txt:focus {
  cursor: pointer;
  color: var(--color-main);
  font-weight: 600;
}
/* 25.06.17 | 남태식 | 예약시간 선택시 색상 변경 */
.time-list-txt.selected {
  color: var(--color-sub);
  font-weight: 800;
}
.able_date {
  display: inline-flex;
  font-size: var(--font-size-sm);
  color: var(--color-black);
  gap: 10px;
  margin-top: 10px;
}

.able_date li:first-child::before {
  content: '●';
  color: var(--color-sub-select);
  font-size: 25px;
  margin-right: 3px;
  vertical-align: sub;
}

.able_date li:last-child::before {
  content: '●';
  color: var(--color-main);
  font-size: 25px;
  margin-right: 3px;
  vertical-align: sub;
}

.line_border {
  border: 2px solid #ededed;
  margin-top: 8px;
}

.fc-icon-chevron-left:before,
.fc-icon-chevron-right:before {
  color: var(--color-accent) !important;
}

.fc .fc-toolbar-title {
  color: var(--color-main) !important;
}

.fc-daygrid-body td.choice-posible-date > div {
  background: var(--color-sub-select) !important;
}

.fc-daygrid-body td.choice-posible-date > div div a {
  color: var(--color-main) !important;
}
/*240927_캘린더 좌우버튼 수정*/
.fc .fc-button .fc-icon {
  font-size: 24px !important;
}
.fc .fc-button {
  padding: 0 !important;
  width: 42px;
  height: 42px;
  border: 1px solid #e3e3e3 !important;
  border-radius: 100px !important;
}
.fc .fc-button:active {
  background: #f2f2f2 !important;
}
.fc-icon-chevron-left:before {
  margin-left: -3px;
}
.fc-icon-chevron-right:before {
  margin-right: -2px;
}

.fc .fc-button-primary:disabled {
  background-color: transparent !important;
  border: none !important;
}

.fc .fc-button:disabled {
  opacity: 0.5 !important;
}

.fc .fc-button:disabled .fc-icon-chevron-left:before,
.fc .fc-button:disabled .fc-icon-chevron-right:before {
  color: var(--color-gray) !important;
}

.fc-daygrid-body td.choice-date > div {
  background: var(--color-main) !important;
}

.fc .fc-col-header {
  margin-bottom: 6px;
}

/* 더보기 dropdown */
.dropdown {
  clear: both;
}

.dropdown a {
  text-decoration: none;
}

.dropdown [data-toggle='dropdown'] {
  position: relative;
  display: block;
  color: var(--color-white);
  font-size: 0px;
}

.dropdown [data-toggle='dropdown']:hover {
  color: var(--color-white);
}

.dropdown .icon-arrow {
  position: absolute;
  font-style: normal;
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent);
  top: 10px;
  left: 0px;
  width: 100%;
  text-align: center;
  height: 35px;
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  line-height: 35px;
  box-sizing: border-box;
}

.dropdown .icon-arrow:hover,
.dropdown .icon-arrow:focus,
.dropdown .icon-arrow:active {
  border: 1px solid var(--color-gray);
  background-color: var(--color-btn);
}

.dropdown .icon-arrow.open:before {
  content: '닫기-';
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}

.dropdown .icon-arrow.close:before {
  content: '더보기+';
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}

.dropdown .icon-arrow:before {
  content: '더보기+';
  color: var(--color-sub);
  color: var(--color-black);
}

.dropdown .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown .dropdown-menu li {
  padding: 0;
  margin-top: 10px;
  display: block;
  color: var(--color-subtxt);
  font-size: var(--font-size-sm);
}

.dropdown .show {
  display: block;
  margin-top: 10px;
  max-height: 9999px;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  animation: showAnimation 0.5s ease-in-out;
  -moz-animation: showAnimation 0.5s ease-in-out;
  -webkit-animation: showAnimation 0.5s ease-in-out;
  -moz-transition: max-height 1s ease-in-out;
  -o-transition: max-height 1s ease-in-out;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
  background: var(--color-btn);
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
}

.dropdown .hide {
  max-height: 0;
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  animation: hideAnimation 0.4s ease-out;
  -moz-animation: hideAnimation 0.4s ease-out;
  -webkit-animation: hideAnimation 0.4s ease-out;
  -moz-transition: max-height 0.6s ease-out;
  -o-transition: max-height 0.6s ease-out;
  -webkit-transition: max-height 0.6s ease-out;
  transition: max-height 0.6s ease-out;
}

/* modal 팝업 */
.modalWrap,
.OTPWrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
}
.OTPWrap {
  background: rgba(0, 0, 0, 0.35);
}

.modal {
  border-radius: 10px;
  position: absolute;
  width: calc(100% - 40px);
  max-width: calc(1028px - 40px);
  /*241010,jskim수정*/
  /* max-height: 376px; */
  /*250502,jskim수정*/
  /* height: inherit; */
  /* 25.10.23 tsnam 수정(화면 높이 작을경우 버튼 가려지는 문제) */
  max-height: calc(100% - 100px);
  min-height: 200px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  overflow: auto;
  padding: 22px 20px;
  background-color: #fff;
  color: var(--color-black);
  font-size: var(--font-size-sm);
  border-radius: 10px;
}
.modal .pop_cont {
  /* 25.10.23 tsnam 수정(화면 높이 작을경우 버튼 가려지는 문제) */
  max-height: calc(100% - 40px);
}
/*241010,jskim추가*/
.modal .pop_cont .pop_cont_wrap {
  display: flex;
  flex-direction: column;
  /* 25.10.23 tsnam 수정(화면 높이 작을경우 버튼 가려지는 문제) */
  max-height: calc(100% - 80px) !important;
}
.modal .cont-text {
  overflow-y: auto;
  flex-grow: 1;
}
.modal .btn-wrap {
  width: 100%;
  display: flex;
  gap: 10px;
}
.modal .btn-wrap [class^='btn_'] {
  flex-grow: 1;
  margin-top: 10px;
}
.modal h3 {
  font-weight: 600;
  color: var(--color-main);
  font-size: var(--font-size-md);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-main);
}

.modal p {
  margin-top: 12px;
}

.modal hr {
  border-width: 1px 0 0 0;
  border-color: #d9d9d9;
}

.modal .reservation_list {
  border-bottom: 0;
}

.modal .reservation_list ul li:first-child {
  min-width: 70px;
}

.modal .close-btn,
.OTPmodal .close-btn {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 10px;
  top: 10px;
  cursor: pointer;
  border: none;
  background: url(../images/ico_close.svg) no-repeat center;
}
.OTPmodal .close-btn {
  filter: invert(1);
}
.modal .close-btn:hover,
.OTPmodal .close-btn:hover {
  opacity: 0.6;
}

.modalWrap.active,
.OTPWrap.active {
  display: block;
}
/*otp 디자인 2024-08-02*/
.OTPmodal {
  width: 100%;
  height: 70vh;
  /* max-height:390px; */
  background: #363636;
  border-radius: 20px 0 0 20px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  border-radius: 20px 20px 0 0;
  padding: 15px 0;
}
.OTPmodal .otp_cont {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.OTPmodal .otp_cont > p {
  font-size: 14px;
  line-height: 18px;
}
.OTPmodal .otp_cont .otp-num {
  margin-top: 22px;
  margin-bottom: 10px;
  min-height: 42.75px;
  font-size: var(--font-size-big);
  display: flex;
  gap: 3px;
}
.OTPmodal .otp_cont .otp-num .itm {
  width: 24px;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.OTPmodal .otp_cont .otp-time {
  font-size: var(--font-size-sm);
  margin-bottom: 10px;
}
.OTPmodal .otp_cont > h5 {
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 30px;
  line-height: 18px;
  font-size: var(--font-size-min);
  margin-bottom: 10px;
  line-height: 130%;
  font-weight: 300;
  word-break: break-all;
}
.OTPmodal .keypad-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  flex: 1 1 0;
}
.OTPmodal .keypad-wrap p {
  width: 33.3333%;
  /* height:59px; */
  /* line-height:59px; */
  font-size: var(--font-size-big);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.OTPmodal .keypad-wrap p:hover {
  background: rgba(255, 255, 255, 0.15);
}
.OTPmodal .request {
  line-height: 48px;
  text-align: center;
  font-size: var(--font-size-md);
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  color: #fff;
  width: 210px;
  margin-top: 5px;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/

에디터 리셋 2023-06-22
*/
.yui3-cssreset html {
  color: #000;
  background: #fff;
}

.yui3-cssreset body,
.yui3-cssreset div,
.yui3-cssreset dl,
.yui3-cssreset dt,
.yui3-cssreset dd,
.yui3-cssreset ul,
.yui3-cssreset ol,
.yui3-cssreset li,
.yui3-cssreset h1,
.yui3-cssreset h2,
.yui3-cssreset h3,
.yui3-cssreset h4,
.yui3-cssreset h5,
.yui3-cssreset h6,
.yui3-cssreset pre,
.yui3-cssreset code,
.yui3-cssreset form,
.yui3-cssreset fieldset,
.yui3-cssreset legend,
.yui3-cssreset input,
.yui3-cssreset textarea,
.yui3-cssreset p,
.yui3-cssreset blockquote,
.yui3-cssreset th,
.yui3-cssreset td {
  margin: 0;
  padding: 0;
}

.yui3-cssreset table {
  border-collapse: collapse;
  border-spacing: 0;
}

.yui3-cssreset fieldset,
.yui3-cssreset img {
  border: 0;
}

/* .yui3-cssreset address,.yui3-cssreset caption,.yui3-cssreset cite,.yui3-cssreset code,.yui3-cssreset dfn,.yui3-cssreset em,.yui3-cssreset strong,.yui3-cssreset th,.yui3-cssreset var{font-style:normal;font-weight:normal} */
.yui3-cssreset ol,
.yui3-cssreset ul {
  list-style: none;
  display: inherit;
  width: inherit;
}

.yui3-cssreset ul li {
  width: inherit;
  background-color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
  padding: inherit;
  border-radius: inherit;
  margin-top: inherit;
}

.yui3-cssreset ul li a {
  display: inherit;
  color: inherit;
}

.yui3-cssreset ul li a:hover {
  color: inherit;
}

.yui3-cssreset caption,
.yui3-cssreset th {
  text-align: left;
}

.yui3-cssreset h1,
.yui3-cssreset h2,
.yui3-cssreset h3,
.yui3-cssreset h4,
.yui3-cssreset h5,
.yui3-cssreset h6 {
  font-size: 100%;
  font-weight: normal;
}

.yui3-cssreset q:before,
.yui3-cssreset q:after {
  content: '';
}

.yui3-cssreset abbr,
.yui3-cssreset acronym {
  border: 0;
  font-variant: normal;
}

.yui3-cssreset sup {
  vertical-align: text-top;
}

.yui3-cssreset sub {
  vertical-align: text-bottom;
}

.yui3-cssreset input,
.yui3-cssreset textarea,
.yui3-cssreset select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.yui3-cssreset input,
.yui3-cssreset textarea,
.yui3-cssreset select {
  font-size: 100%;
}

.yui3-cssreset legend {
  color: #000;
}

.yui3-cssreset span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.yui3-cssreset .answer_area {
  background-color: inherit;
  color: inherit;
  font-size: inherit;
}

#yui3-css-stamp.cssreset-context {
  display: none;
}

@keyframes grayscale {
  0% {
    filter: grayscale(none);
    background-color: rgba(0, 0, 0, 0);
  }

  100% {
    filter: grayscale(1);
    background-color: rgba(0, 0, 0, 0.3);
  }
}

@keyframes opacityAni {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/*바코드 추가*/
.sub_tit_wrap {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.sub_tit_wrap .barcode_warp {
  cursor: pointer;
  width: 65px;
  height: 48px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub_tit_wrap .barcode_warp:hover {
  background: rgba(0, 0, 0, 0.03);
}
.sub_tit_wrap .barcode_warp img {
  width: 41px;
}
.card-barcode {
  text-align: center;
  margin-top: 25px;
  padding: 0 10px;
}
.card-barcode .card-barcode-wrap {
  width: 100%;
  height: 70px;
  background: transparent;
}
.card-barcode p {
  margin-top: 5px !important;
  font-size: 15px;
}
#barcode {
  width: 100%;
  height: 100%;
}

/*240830_1:1문의페이지 추가_js*/
.tab-container > .radio-tab {
  display: none;
}
.tab-container .tab-btn {
  width: 50%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: var(--color-subtxt);
  font-weight: 400;
  display: block;
  float: left;
  position: sticky;
  top: 50px;
  background: #fff;
  z-index: 1;
}
.sub_cont_scroll > .tab-wrap {
  display: none;
}
.sub_cont_scroll > .tab-wrap > li:not(:last-child):not(:first-child) {
  border-bottom: 1px solid var(--color-gray);
}
.sub_cont_scroll > .tab-wrap ul li.more {
  background: var(--color-btn);
  font-size: 16px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 8px;
  font-weight: 600;
  margin: 20px 0;
}

.sub_cont_scroll > .tab-wrap ul li:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.sub_cont_scroll > .tab-wrap ul li.more:hover {
  background: var(--color-gray);
}
.sub_cont_scroll > .tab-wrap > li:first-child {
  position: sticky;
  top: 0;
  z-index: 1;
}
.tab-container .radio-tab:checked + label {
  border-bottom: 2px solid var(--color-main);
  color: var(--color-main);
  font-weight: 800;
  box-sizing: border-box;
}
.tab-container .radio-tab:first-child:checked ~ .sub_cont_scroll > .tab-wrap:first-child,
.tab-container .radio-tab:nth-child(3):checked ~ .sub_cont_scroll > .tab-wrap:nth-child(2) {
  display: block;
}
.tab-container .fixed-btn-hide:checked ~ .sub_cont_scroll .fixed-btn-wrap {
  display: none;
}
.tab-container .sub_cont_scroll {
  clear: both;
}
.tab-container .sub_cont_scroll .list-filter {
  display: flex;
  justify-content: space-between;
  height: 39px;
  align-items: center;
  background: var(--color-btn);
  padding: 0 10px;
  font-size: 16px;
}
.tab-container .sub_cont_scroll .list-filter > span {
  font-size: 16px;
  font-weight: 500;
}
.tab-container .ui-widget {
  border: 1.5px solid var(--color-gray);
  border-radius: 100px;
  box-sizing: border-box;
  padding: 0 10px;
  line-height: 30px;
  width: 6em;
  font-family: 'Pretendard';
  outline: 0;
}
.ui-button .ui-icon {
  background-image: url(../images/ui-icons_777777_256x240.png) !important;
  margin-top: 7px;
}
.ui-widget.ui-widget-content {
  border-radius: 10px;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.1);
}
.ui-menu .ui-menu-item-wrapper {
  padding: 8px 1em 8px 0.4em;
}
.tab-container .noting {
  height: calc(100vh - 370px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-subtxt);
  font-size: 15px;
  line-height: 18px;
}
.tab-container .list-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.tab-container .list-wrap .list-title span {
  color: var(--color-subtxt);
  font-size: 15px;
  line-height: 18px;
}
.tab-container .list-wrap .list-title > span {
  font-weight: 400;
  font-size: 13px;
  background: var(--color-btn);
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0;
}
.tab-container .list-wrap .list-title p {
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
}

.tab-container .list-wrap .list-state {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-main);
}
.tab-container .list-wrap .list-state img {
  width: 12px;
}
.tab-container .list-wrap .list-state img.on {
  transform: rotate(-180deg);
}
.tab-container .list-wrap .list-state.done {
  color: var(--color-disabled);
}
.tab-container .content-wrap {
  font-size: 15px;
  color: var(--color-subtxt);
  line-height: 18px;
  height: 0;
  overflow: hidden;
}
.tab-container .content-wrap.on {
  height: auto;
}
.tab-container .content-wrap textarea {
  resize: none;
  width: 100%;
  outline: none;
  height: 100px;
  border-radius: 10px;
  border: 1px solid var(--color-gray);
  padding: 10px;
  font-size: 15px;
  line-height: 18px;
  box-sizing: border-box;
  field-sizing: content;
}
.tab-container .content-wrap textarea:read-only {
  color: var(--color-subtxt);
  height: auto;
  border: 0;
  padding: 0;
}
.tab-container .content-wrap .red-small-btn,
.tab-container .content-wrap .blue-small-btn {
  font-size: 13px;
  line-height: 18px;
  padding: 3px 8px;
}
.tab-container .content-wrap .save-btn {
  display: none;
}
.tab-container .content-wrap .name-date-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 20px;
}
.tab-container .content-wrap .name-date-wrap b {
  font-weight: 400;
}
.tab-container .content-wrap .name-date-wrap .small-btn-wrap {
  margin: 0 0 0 auto;
}
.tab-container .content-wrap .content-answer {
  background: var(--color-btn);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*240830_1:1문의페이지 추가끝_js*/

/*250117_공통 max-height 추가_jskim*/
.mh-40 {
  max-height: 40% !important;
}
.mh-50 {
  max-height: 50% !important;
}
.mh-60 {
  max-height: 60% !important;
}
.mh-70 {
  max-height: 70% !important;
}
.mh-80 {
  max-height: 80% !important;
}

.mh-100px {
  max-height: 100px !important;
}
.mh-200px {
  max-height: 200px !important;
}
.mh-300px {
  max-height: 300px !important;
}
.mh-400px {
  max-height: 400px !important;
}
.mh-500px {
  max-height: 500px !important;
}
.mh-600px {
  max-height: 500px !important;
}

.mw-100px {
  max-height: 100px !important;
}
.mw-150px {
  max-height: 100px !important;
}
.mw-200px {
  max-height: 200px !important;
}
/*25.05.13 | tsnam | 공통 width class 추가*/
.mw-40 {
  max-width: 40% !important;
}
.mw-50 {
  max-width: 50% !important;
}
.mw-60 {
  max-width: 60% !important;
}
.mw-70 {
  max-width: 70% !important;
}
.mw-80 {
  max-width: 80% !important;
}
.w-30 {
  width: 30% !important;
}
.w-40 {
  width: 40% !important;
}
.w-50 {
  width: 50% !important;
}
.w-60 {
  width: 60% !important;
}
.w-70 {
  width: 70% !important;
}
.w-80 {
  width: 80% !important;
}

/*25.05.13 | tsnam | 추가 | 의사선택 페이지 진료예약 버튼 추가 (더보기 왼쪽 50%)*/
.btn-treat-reservaiton {
  font-style: normal;
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  /*color: var(--color-accent);*/
  margin-top: 10px;
  width: 100%;
  text-align: center;
  height: 35px;
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  box-sizing: border-box;
  cursor: default;
}
/*25.06.11 |jskim | 추가 | 진료예약 버튼 추가, 배경색 있는 버튼*/
.btn-treat-reservaiton-bg {
  font-style: normal;
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #fff;
  background: var(--color-main);
  margin-top: 10px;
  width: 100%;
  text-align: center;
  height: 35px;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
}
/*25.05.21 | jskim | 추가 | disabled*/
.btn-treat-reservaiton:disabled {
  background: #e4e4e4;
  color: #bababa !important;
}
/*25.06.11 | jskim | 추가 | disabled*/
.btn-treat-reservaiton-bg.disabled {
  opacity: 0.3;
  color: rgba(255, 255, 255, 0.7);
}
/*25.05.13 | tsnam | 50% 나눈 2열 컬럼*/
.two-colomn-btn-wrap {
  display: flex;
  width: 100%;
  gap: 6px;
}
.m-0 {
  margin: 0 !important;
}
.p-auto {
  padding: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 1rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}

@media all and (min-width: 768px) {
  .modal .btn-wrap {
    justify-content: flex-end;
  }
  .modal .btn-wrap [class^='btn_'] {
    max-width: 150px;
  }
}

/* 25.05.14 | tsnam | 기본 테이블 레이아웃 */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border: 1px solid var(--color-gray);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > tbody > tr > th,
.table > tbody > tr > td {
  border: 1px solid var(--color-gray);
  padding: 2px;
}

/* 25.06.05 | 남태식 | 검색창 입력 dropdown 컴포넌트 재정의 */
/* 검색 컨테이너 */
.search-container {
  position: relative;
  margin: 10px;
  display: flex;
}
/* 드롭다운 컨테이너 */
.dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.dropdown-container.active {
  display: block;
}
/* 검색어 목록 */
.search-items {
  list-style: none;
}

.search-item {
  padding: 8px 1em 8px 0.4em;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.search-item:hover,
.search-item.highlighted {
  background-color: #f8f9fa;
}

.search-item:last-child {
  border-bottom: none;
}

.item-icon {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  color: #666;
  flex-shrink: 0;
}

.item-text {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.item-text .highlight {
  background-color: #fff3cd;
  color: #856404;
  font-weight: 600;
}
.item-text b {
  color: #cb0a0a;
  display: inline-block;
  margin-top: -1px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .search-container {
    margin: 0;
  }

  .dropdown-container {
    max-height: 300px;
  }
}
