@charset "UTF-8";
:root {
  --sat: env(safe-area-inset-top);
  --sar: env(safe-area-inset-right);
  --sab: env(safe-area-inset-bottom);
  --sal: env(safe-area-inset-left);
  --bar-r: 0; --bar-g: 119; --bar-b: 125;
  --bar-color-0: rgb(var(--bar-r), var(--bar-g), var(--bar-b));
  --bar-color-1: rgba(var(--bar-r), var(--bar-g), var(--bar-b), 0.8);
  --bar-color-2: rgba(var(--bar-r), var(--bar-g), var(--bar-b), 0.6);
  --bar-color-3: rgba(var(--bar-r), var(--bar-g), var(--bar-b), 0.45);
  --bar-color-4: rgba(var(--bar-r), var(--bar-g), var(--bar-b), 0.3);
}

@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Pretendard/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Pretendard/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Pretendard/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Pretendard/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Pretendard/Pretendard-Bold.woff") format("woff");
}
body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: -3%;
  -ms-overflow-style: none;
  background: #fff;
  word-break: keep-all;
}

button {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
button[disabled] {
  cursor: default;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl {
  margin-bottom: 0;
}

dd {
  margin-bottom: 0;
}

a {
  color: inherit;
}

svg,
img {
  vertical-align: middle;
  max-width: 100%;
}

i {
  line-height: 1;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.cursor-pointer {
  cursor: pointer;
}

[class^=icon-] {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  flex-shrink: 0;
}

.icon-mail {
  background-image: url("../images/icon-mail.svg");
  width: 24px;
  height: 24px;
}

.icon-phone {
  background-image: url("../images/icon-phone.svg");
  width: 24px;
  height: 24px;
}

.icon-check-gray {
  background-image: url("../images/icon-check-gray.svg");
  width: 18px;
  height: 18px;
}

.icon-check-white {
  background-image: url("../images/icon-check-white.svg");
  width: 18px;
  height: 18px;
}

.badge {
  --bs-badge-font-size: .8125rem;
  --bs-badge-padding-x: .75rem;
  --bs-badge-padding-y: .5rem;
  --bs-badge-border-radius: 100px;
  background-color: #3f3f3f;
  border-radius: var(--bs-badge-border-radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-lg {
  line-height: 1.6;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #999999;
}

.dropdown {
  --bs-dropdown-item-border-radius: .25rem;
}

.dropdown-menu {
  --bs-dropdown-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
  --bs-dropdown-border-width: 0;
  box-shadow: var(--bs-dropdown-box-shadow);
}

.dropdown-item {
  text-align: center;
  font-weight: 500;
}

.form-select {
  text-align: left;
}

.form-select-sm {
  padding-right: 30px;
  background-position: right 0.5rem center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-text {
  display: flex;
  gap: 4px;
  color: var(--UI_05);
  font-size: 13px;
  font-weight: 400;
}
.form-text i {
  flex-shrink: 0;
}

.invalid-feedback {
  line-height: 1.38426;
}
.invalid-feedback i {
  margin-right: 4px;
  transform: translateY(-1px);
}

.form-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-inline .col-form-label {
  min-width: var(--label-width);
}

.input-group {
  position: relative;
}
.input-group:focus-within .form-control {
  border-color: #0f55ee;
}
.input-group .form-control {
  border-radius: 0.75rem !important;
}
.input-group .form-control:focus {
  z-index: initial;
}
.input-group .icon-button {
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: 4;
  padding: 0 15px;
  height: calc(100% - 2px);
  max-height: 44px;
  line-height: 1;
  border: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.input-group .form-control-sm + .icon-button {
  padding: 0 12px;
}

.form-label {
  color: #fff;
}

.modal-backdrop + .modal-backdrop {
  --bs-backdrop-zindex: 1056;
}
.modal-backdrop + .modal-backdrop + .modal-backdrop {
  --bs-backdrop-zindex: 1058;
}

.modal {
  --bs-modal-padding: 1.5rem;
  --bs-modal-header-padding: 1rem;
  --bs-modal-inner-border-radius: 0.5rem;
  --bs-modal-border-width: 0;
  --bs-modal-footer-border-width: 0;
  --bs-modal-margin: 1rem;
  overflow: hidden;
}
.modal.second {
  --bs-modal-zindex: 1057;
}
.modal.third {
  --bs-modal-zindex: 1059;
}
@media (min-width: 992px) {
  .modal {
    --bs-modal-header-padding: 1.5rem;
  }
}

.modal-content {
  box-shadow: 4px 4px 15px rgb(0, 0, 0);
}

.modal-header .btn-close {
  --bs-btn-close-opacity: 1;
  --bs-btn-close-hover-opacity: 1;
  --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 19L5 5M19 5L5 19' stroke='%2326282C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  margin: 0;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background-position: 0 0;
  background-size: contain;
}

.modal-title {
  font-weight: 700;
}

.modal-preview-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.modal-preview {
  width: 380px;
  max-width: 100%;
}

.modal-preview-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}

.modal-preview-frame {
  display: flex;
  flex-direction: column;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
}

.modal-preview-frame--push {
  justify-content: flex-end;
  padding: 0 20px 60px;
  background-color: #0b0b0d;
}

.modal-preview-frame--consult {
  position: relative;
  justify-content: center;
  padding: 0 20px;
  background-color: #a7a7a7;
}

.modal-preview-statusbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #222222;
}
.modal-preview-statusbar i {
  display: inline-block;
  width: 66px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-statusbar.svg");
}

.modal-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.modal-brand-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-brand-mark.svg");
}

.modal-brand-text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.27px;
  font-weight: 700;
  color: #222222;
}

.modal-brand-logo {
  height: 20px;
  width: auto;
}

.push-card,
.consult-card {
  padding: 16px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.push-title {
  margin: 0 0 2px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  font-weight: 700;
  color: #0F1212;
}

.push-desc {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #414751;
}

.consult-title {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  font-weight: 700;
  color: #0F1212;
}

.consult-field {
  margin-bottom: 16px;
}
.consult-field label {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #414751;
}
.consult-field p {
  margin: 0;
  padding: 8px;
  border-radius: 8px;
  background-color: #F0F3F4;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 500;
  color: #0F1212;
}

.push-actions,
.consult-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn-detail {
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #E1E8EA;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #5C6566;
}

.btn-call-now {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #fff;
  min-width: 165px;
}
.btn-call-now i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-phone-fill.svg");
}

.push-modal .modal-dialog {
  max-width: 384px;
  margin-left: auto;
  margin-right: auto;
}
.push-modal .modal-content {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.navbar-brand {
  --bs-navbar-brand-padding-y: 0;
  --bs-navbar-brand-font-size: 20px;
  font-family: "ClashDisplay-Variable";
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.nav-link {
  font-weight: 700;
  padding: 0 !important;
}

.navbar {
  --bs-navbar-padding-y: 1.25rem;
}

.navbar-nav {
  gap: 39px;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .navbar-nav {
    flex-direction: row;
  }
}

.pagination {
  margin-top: 0.75rem;
}
@media (min-width: 1200px) {
  .pagination {
    margin-top: 1.5rem;
  }
}
.pagination .material-icons {
  font-size: 17px;
  vertical-align: middle;
  margin-left: -4px;
  margin-right: -4px;
}

.progress {
  background: rgba(var(--UI_11), 1);
  border-radius: 50rem;
  height: 16px;
  position: relative;
  overflow: visible;
}
.progress::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--UI_08);
  border-radius: 50rem;
}

.progress-bar {
  background: #B1CBDD;
  border-radius: 50rem;
  overflow: visible;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.project-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .project-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    place-items: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 40px;
  }
}
.project-list .project-item {
  width: 100%;
  text-decoration: none;
}
.project-list .project-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 24px 0;
  position: relative;
}
.project-list .project-info::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/icon-arrow-right.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.project-list .project-img img {
  width: 100%;
}
.project-list .project-name {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
}

.table-fixed {
  table-layout: fixed;
}

.table {
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .table {
    font-size: 13px;
    min-width: var(--minWidth);
  }
}
.table col {
  width: var(--col-width);
}
@media (min-width: 1200px) {
  .table col {
    width: var(--col-width-lg);
  }
}
.table th {
  font-weight: 500;
}
@media (max-width: 1199.98px) {
  .table th {
    white-space: nowrap;
  }
}
.table td {
  word-break: break-all;
}
@media (max-width: 1199.98px) {
  .table .form-control-sm {
    padding-top: 4px;
    padding-bottom: 4px;
    min-height: 24px;
  }
}

.tab {
  margin-bottom: 3rem;
}
@media (min-width: 1200px) {
  .tab {
    margin-bottom: 7.5rem;
  }
}
@media (max-width: 1199.98px) {
  .tab {
    background: #fff;
    position: sticky;
    padding: 0.5rem 0;
    top: 62px;
    z-index: 2;
  }
}
.tab .tab-inner {
  margin-left: -16px;
  margin-right: -16px;
}
.tab .tab-inner .swiper .swiper-wrapper {
  align-items: center;
}
@media (min-width: 1200px) {
  .tab .tab-inner .swiper .swiper-wrapper {
    justify-content: center;
  }
}
.tab .tab-inner .swiper .swiper-slide {
  width: auto;
}
.tab .tab-inner button {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.tab .tab-inner button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
}
.tab .tab-inner button.active {
  background: linear-gradient(135deg, #0f55ee, rgb(61.2134387352, 118.209486166, 242.7865612648));
  color: #000;
  box-shadow: 0 4px 15px rgba(15, 85, 238, 0.3);
}
@media (max-width: 991.98px) {
  .tab .tab-inner button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}
.page-title {
  border-bottom: 1px solid #d0d6dd;
}
.page-title .page-title-inner {
  padding: 128px 128px 64px 96px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  color: #000;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .page-title .page-title-inner {
    margin: 0 0 20px;
    padding: 64px 16px 64px 16px;
  }
}
.page-title h1 {
  font-size: 100px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 1199.98px) {
  .page-title h1 {
    font-size: 40px;
  }
}
.page-title .sub-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  color: #8a95a2;
  padding: 20px 0;
  position: relative;
}
@media (max-width: 1199.98px) {
  .page-title .sub-title {
    font-size: 20px;
    padding: 5px 0;
  }
}
.page-title .sub-title::before {
  content: "";
  position: absolute;
  width: 1.5px;
  height: 34px;
  background-color: #d0d6dd;
  position: absolute;
  left: -24px;
  top: 24px;
}
@media (max-width: 1199.98px) {
  .page-title .sub-title::before {
    left: -8px;
    top: 7px;
    height: 20px;
  }
}
.page-title .breadcrumb-dropdown {
  position: relative;
}
.page-title .breadcrumb-dropdown .breadcrumb-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  transition: opacity 0.2s;
}
.page-title .breadcrumb-dropdown .breadcrumb-toggle:hover {
  opacity: 0.7;
}
.page-title .breadcrumb-dropdown .breadcrumb-toggle .icon-breadcrumb-arrow-down {
  transition: transform 0.3s ease;
}
.page-title .breadcrumb-dropdown.active .breadcrumb-toggle .icon-breadcrumb-arrow-down {
  transform: rotate(180deg);
}
.page-title .breadcrumb-dropdown .breadcrumb-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #d0d6dd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 4px 0;
  margin: 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
  text-align: center;
}
.page-title .breadcrumb-dropdown .breadcrumb-dropdown-menu li {
  margin: 0;
}
.page-title .breadcrumb-dropdown .breadcrumb-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #000;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  font-size: 14px;
}
.page-title .breadcrumb-dropdown .breadcrumb-dropdown-menu li a:hover {
  background-color: #f5f7fa;
  color: #0066ff;
}
.page-title .breadcrumb-dropdown.active .breadcrumb-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-background {
  width: 100%;
  margin-top: 92px;
  position: relative;
  overflow: hidden;
}

.h-788 {
  height: 788px;
}

.mt288 {
  margin-top: 288px;
}

.top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.55) 0%, rgba(20, 20, 20, 0.75) 100%);
  pointer-events: none;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}
.top-overlay h1 {
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 80px;
  line-height: 130%;
  letter-spacing: 0%;
}
.top-overlay p {
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: center;
}

.page-breadcrumb .breadcrumb {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-breadcrumb .breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-breadcrumb .breadcrumb-item span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border-radius: 8px;
  padding: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
.form-control::-moz-placeholder {
  color: #fff;
}
.form-control::placeholder {
  color: #fff;
}

html,
body {
  min-height: 100vh;
  overflow-x: hidden;
}

body.page-loaded::before {
  opacity: 0;
  pointer-events: none;
}
body.page-loaded.animation-complete::before {
  display: none;
}

.layout {
  min-height: 100vh;
  max-width: 430px;
}
@media (min-width: 431px) {
  .layout {
    margin: 0 auto;
  }
}

.layout-main {
  padding-top: 56px;
}

.layout-app {
  background-color: #F0F3F4;
}
.layout-app .layout-main {
  padding-bottom: 64px;
}

.row > * {
  min-width: 0;
}

.container {
  padding-left: 16px;
  padding-right: 16px;
}

.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  max-width: 430px;
  margin: 0 auto;
  transition: background-color 0.2s ease;
  background: transparent;
}
.layout-header.is-scrolled {
  background-color: #fff;
}
.layout-header #navbarHeader {
  height: 56px;
  padding: 0 16px;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.layout-header .logo {
  height: 20px;
}

.navbar-sub {
  gap: 12px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-back {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-back i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-arrow-left.svg");
}

.navbar-title {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.27px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #0F1212;
}

.header-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 40px;
  background-color: #E1E8EA;
}

.header-toggle-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border: 0;
  border-radius: 24px;
  background-color: transparent;
  color: #2F343B;
  white-space: nowrap;
}
.header-toggle-btn.active {
  background-color: #099FA7;
  color: #fff;
}

.layout-nav-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0px -2px 16px 0px rgba(0, 0, 0, 0.0784313725);
}

.layout-nav {
  display: flex;
  height: 64px;
  background-color: #fff;
}

.layout-nav-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #A1A7A7;
  text-decoration: none;
}
.layout-nav-item i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.layout-nav-item i.nav-home {
  background-image: url("../images/nav-home.svg");
}
.layout-nav-item i.nav-call {
  background-image: url("../images/nav-call.svg");
}
.layout-nav-item i.nav-advice {
  background-image: url("../images/nav-advice.svg");
}
.layout-nav-item i.nav-analysis {
  background-image: url("../images/nav-analysis.svg");
}
.layout-nav-item i.nav-management {
  background-image: url("../images/nav-management.svg");
}
.layout-nav-item span {
  font-size: 11px;
  font-weight: 500;
}
.layout-nav-item.active {
  color: #0A9FA8;
}
.layout-nav-item.active i.nav-home {
  background-image: url("../images/nav-home-active.svg");
}
.layout-nav-item.active i.nav-call {
  background-image: url("../images/nav-call-active.svg");
}
.layout-nav-item.active i.nav-advice {
  background-image: url("../images/nav-advice-active.svg");
}
.layout-nav-item.active i.nav-analysis {
  background-image: url("../images/nav-analysis-active.svg");
}
.layout-nav-item.active i.nav-management {
  background-image: url("../images/nav-management-active.svg");
}

#footer-mo {
  padding: 40px 0;
  background-color: #fff;
}
#footer-mo .logo {
  margin-bottom: 18px;
}
#footer-mo .text-wrap {
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  vertical-align: middle;
  color: #0e0f10;
}
#footer-mo .info li {
  display: flex;
  align-items: center;
  gap: 8px;
}
#footer-mo .info li i {
  width: 16px;
  height: 16px;
}
#footer-mo .copy {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  vertical-align: middle;
  color: #8a8f96;
}

.home {
  padding: 40px 16px 24px;
}

.home-logo {
  margin-bottom: 40px;
  text-align: center;
}
.home-logo-img {
  width: 230px;
  max-width: 100%;
  margin-bottom: 4px;
}
.home-logo-desc {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #0A9FA8;
}

.home-guide {
  margin-bottom: 32px;
  text-align: center;
}
.home-guide-icon {
  margin: 0 auto 8px;
}
.home-guide-icon img {
  width: 56px;
  height: 56px;
}
.home-guide-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0F1212;
}
.home-guide-desc {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #5C6566;
  letter-spacing: -3%;
}

.home-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.home-steps-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-radius: 8px;
  background-color: #fff;
}

.home-steps-num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0A9FA8;
  color: #fff;
}

.home-steps-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #313A3A;
}

.home-cta {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  color: #fff;
}

.dashboard {
  padding: 40px 16px 24px;
}

.dashboard-title {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  color: #313A3A;
}

.answer-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.answer-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  background-color: #fff;
  text-align: left;
  transition: transform 0.15s ease;
}
.answer-option:active {
  transform: scale(0.98);
}
.answer-option-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #EAF0F1;
}
.answer-option-icon i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.answer-option-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.answer-option-text strong {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #313A3A;
}
.answer-option-text small {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #5C6566;
}
.answer-option .icon-headset {
  background-image: url("../images/icon-headset-b.svg");
}
.answer-option .icon-call-direct {
  background-image: url("../images/icon-call-direct-b.svg");
}
.answer-option.selected {
  background-color: #E9F7F7;
  border: 2px solid #0A9FA8;
}
.answer-option.selected .answer-option-icon {
  background-color: #00A2AA;
}
.answer-option.selected .icon-headset {
  background-image: url("../images/icon-headset-wh.svg");
}
.answer-option.selected .icon-call-direct {
  background-image: url("../images/icon-call-direct-wh.svg");
}

.stat-cards {
  display: flex;
  gap: 8px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 12px;
  padding: 32px;
  border-radius: 12px;
  background-color: #fff;
  text-decoration: none;
}
.stat-card-num {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -1.2px;
  font-weight: 600;
  color: #0F1212;
}
.stat-card-num span {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  font-weight: 500;
  margin-left: 1px;
  color: #313A3A;
}
.stat-card-label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 600;
  color: #313A3A;
}
.stat-card-label--danger {
  color: #FF383C;
}

.create {
  padding: 24px 16px 32px;
}

.step-progress {
  display: flex;
  align-items: flex-start;
  margin: 0 0 32px;
  padding: 0 24px;
  list-style: none;
}

.step-progress-item {
  position: relative;
  display: flex;
  flex: 0 0 32px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.step-progress-item.done .step-progress-label {
  color: #0A9FA8;
}
.step-progress-item.active .step-progress-label {
  font-weight: 700;
  color: #0A9FA8;
}

.step-progress-line {
  flex: 1 1 auto;
  height: 1px;
  margin-top: 16px;
  background-color: #E1E8EA;
}

.step-progress-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #D4DCDC;
}
.step-progress-circle i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.step-progress-circle .icon-check {
  background-image: url("../images/icon-check.svg");
}
.step-progress-circle .icon-check-active {
  background-image: url("../images/icon-check-active.svg");
}

.step-progress-item.done .step-progress-circle,
.step-progress-item.active .step-progress-circle {
  background-color: #0A9FA8;
}

.step-progress-label {
  font-size: 13px;
  font-weight: 500;
  color: #5C6566;
  white-space: nowrap;
}

.create-step {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0A9FA8;
  padding-left: 4px;
}

.create-title {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.27px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0F1212;
  padding-left: 4px;
}

.create-desc {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #313A3A;
  padding-left: 4px;
}

.create-field {
  position: relative;
}

.create-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
}

.create-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.create-field-label {
  font-size: 13px;
  font-weight: 700;
  color: #0F1212;
}

.create-input {
  display: block;
  width: 100%;
  height: 66px;
  padding: 10px 12px;
  border: 1px solid #D4DCDC;
  border-radius: 8px;
  background-color: #fff;
  resize: none;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #222222;
}
.create-input::-moz-placeholder {
  color: #999999;
}
.create-input::placeholder {
  color: #999999;
}
.create-input:focus {
  outline: none;
  border-color: #0A9FA8;
}
.create-input--lg {
  height: 96px;
}

input.create-input {
  height: 40px;
}

.create-counter {
  font-size: 13px;
  font-weight: 400;
  position: absolute;
  right: 12px;
  bottom: 7.5px;
  color: #5C6566;
}

.create-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  border: 1px dashed #0A9FA8;
  border-radius: 8px;
  background-color: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #0A9FA8;
}
.create-add-btn i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-plus.svg");
}

.preq-list:empty {
  display: none;
}

.preq-list:not(:empty) + .create-add-btn {
  position: relative;
}
.preq-list:not(:empty) + .create-add-btn::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  border-top: 1px dashed #D4DCDC;
}

.preq-item {
  padding: 0 0 20px;
}
.preq-item:not(:first-child) {
  border-top: 1px dashed #D4DCDC;
  padding-top: 24px;
}
.preq-item:first-child .preq-remove {
  display: flex;
}

.preq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.preq-title {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  font-weight: 700;
  margin: 0;
  color: #0F1212;
}

.preq-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
}
.preq-remove i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-x.svg");
}

.preq-desc {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  margin: 0 0 16px;
  color: #313A3A;
}

.preq-item .create-field-group {
  margin-bottom: 16px;
}
.preq-item .create-field-group:last-child {
  margin-bottom: 0;
}

.preq-type-toggle {
  display: flex;
  gap: 8px;
}

.preq-type-btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  border: 1px solid #D4DCDC;
  border-radius: 8px;
  background-color: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #5C6566;
}
.preq-type-btn i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.preq-type-btn.active {
  border-color: #0A9FA8;
  background-color: #E9F7F7;
  color: #0A9FA8;
}

.icon-type-text {
  background-image: url("../images/icon-type-text.svg");
}

.icon-type-checkbox {
  background-image: url("../images/icon-type-checkbox.svg");
}

.icon-type-select {
  background-image: url("../images/icon-type-select.svg");
}

.preq-type-btn.active .icon-type-text {
  background-image: url("../images/icon-type-text-active.svg");
}
.preq-type-btn.active .icon-type-checkbox {
  background-image: url("../images/icon-type-checkbox-active.svg");
}
.preq-type-btn.active .icon-type-select {
  background-image: url("../images/icon-type-select-active.svg");
}

.preq-options-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.preq-option-add {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  border-radius: 9px;
  background: #E9F7F7;
  font-size: 13px;
  font-weight: 600;
  color: #0A9FA8;
  padding: 8px 10px;
}
.preq-option-add i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-plus.svg");
}

.preq-option-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preq-option-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.preq-option-drag {
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-drag.svg");
}

.preq-option-input {
  flex: 1;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #D4DCDC;
  border-radius: 8px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #222222;
}
.preq-option-input::-moz-placeholder {
  color: #999999;
}
.preq-option-input::placeholder {
  color: #999999;
}
.preq-option-input:focus {
  outline: none;
  border-color: #0A9FA8;
}

.preq-option-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  background: none;
}
.preq-option-remove i {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-trash.svg");
}

.preq-caption {
  font-size: 13px;
  font-weight: 400;
  margin-top: -8px;
  color: #313A3A;
}

.create-buttons {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.create-btn-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  height: 44px;
  padding: 11px 12px;
  border: 1px solid #0A9FA8;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #0A9FA8;
  min-width: 118px;
}
.create-btn-preview i {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-search-plus.svg");
}

.create-btn-next {
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #fff;
}

.required {
  color: #ec2e12;
}

.ad-list:not(:empty) + .create-add-btn {
  position: relative;
}
.ad-list:not(:empty) + .create-add-btn::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  border-top: 1px dashed #D4DCDC;
}

.ad-item {
  padding: 0 0 20px;
}
.ad-item:not(:first-child) {
  border-top: 1px dashed #D4DCDC;
  padding-top: 24px;
}
.ad-item:first-child .ad-remove {
  display: none;
}

.ad-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ad-title {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  font-weight: 700;
  margin: 0;
  color: #0F1212;
}

.ad-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
}
.ad-remove i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-x.svg");
}

.ad-item .create-field-group {
  margin-bottom: 16px;
}
.ad-item .create-field-group:last-child {
  margin-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  font-weight: 700;
  color: #0F1212;
}

.section-title-bar {
  display: inline-block;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background-color: #0A9FA8;
}

select.create-input {
  height: 42px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  background-image: url("../images/icon-dropdown.svg");
}
select.create-input:invalid {
  color: #999999;
}

.create-field-copy {
  display: flex;
  gap: 8px;
}
.create-field-copy .create-input {
  flex: 1;
}

.copy-btn {
  flex-shrink: 0;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background-color: #5C6566;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.link-actions {
  display: flex;
  gap: 8px;
}
.link-actions .create-btn-preview {
  flex: 1;
  min-width: 0;
}

.qr-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}

.qr-preview-img {
  width: 200px;
  height: 200px;
}

.qr-preview-brand {
  display: flex;
  align-items: center;
}
.qr-preview-brand img {
  height: 22px;
}

.qr-save-btn {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.consultation {
  padding: 24px 16px 32px;
}

.consultation-filter {
  margin-bottom: 24px;
}

.consultation-filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: none;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #0F1212;
}
.consultation-filter-toggle i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-chevron-up.svg");
  transition: transform 0.2s ease;
}
.consultation-filter-toggle[aria-expanded=false] i {
  transform: rotate(180deg);
}

.consultation-filter-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 12px;
  background-color: #E1E8EA;
}

.consultation-filter-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consultation-filter-label {
  font-size: 13px;
  font-weight: 700;
  color: #0F1212;
}

.consultation-date-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.consultation-date-field {
  position: relative;
  flex: 1;
  min-width: 0;
}
.consultation-date-field input {
  width: 100%;
  height: 40px;
  padding: 0 36px 0 12px;
  border: 1px solid #D4DCDC;
  border-radius: 8px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #222222;
}
.consultation-date-field input:focus {
  outline: none;
  border-color: #0A9FA8;
}
.consultation-date-field i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-calendar.svg");
}

.consultation-date-sep {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  flex-shrink: 0;
  color: #5C6566;
}

.datepicker {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  padding: 12px;
  border: 1px solid #D4DCDC;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.datepicker-title {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #0F1212;
}

.datepicker-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: none;
}
.datepicker-nav i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-arrow-left.svg");
}

.datepicker-next i {
  transform: scaleX(-1);
}

.datepicker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #5C6566;
  text-align: center;
}

.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.datepicker-day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: none;
  font-size: 13px;
  font-weight: 500;
  color: #0F1212;
}
.datepicker-day:hover {
  background-color: #F0F3F4;
}
.datepicker-day.active {
  background-color: #0A9FA8;
  color: #fff;
}

.consultation-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consultation-pill {
  height: 32px;
  padding: 6px 14px;
  border: 1px solid #D4DCDC;
  border-radius: 24px;
  background-color: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #5C6566;
}
.consultation-pill.active {
  border-color: #0A9FA8;
  background-color: #E9F7F7;
  color: #0A9FA8;
}

.consultation-search-btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.15s ease;
}
.consultation-search-btn:active {
  transform: scale(0.98);
}

.consultation-result-count {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #5C6566;
}

.consultation-empty {
  padding: 48px 16px;
  text-align: center;
  color: #5C6566;
  font-size: 14px;
  line-height: 1.6;
}

.consultation-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consultation-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.consultation-card {
  padding: 16px;
  border-radius: 12px;
  background-color: #fff;
}

.consultation-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.consultation-card-time {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 500;
  color: #5C6566;
}
.consultation-card-time strong {
  color: #0F1212;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  font-weight: 600;
}

.consultation-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background-color: #E9F7F7;
}
.consultation-call-btn i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-call-history.svg");
}

.consultation-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 23px;
  padding: 0 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.consultation-badge--missed {
  background-color: #FFEAEA;
  color: #EF4444;
}
.consultation-badge--completed {
  background-color: #E5F6F8;
  color: #0A9FA8;
}
.consultation-badge--auto {
  background-color: #E8F3FE;
  color: #086EDC;
}
.consultation-badge--ongoing {
  background-color: #E1E8EA;
  color: #5C6566;
}

.consultation-card-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
}
.consultation-card-row::before {
  content: "·";
  color: #5C6566;
}

.consultation-row-label {
  margin-right: 6px;
  flex-shrink: 0;
  width: 50px;
  color: #5C6566;
}

.consultation-row-value {
  color: #0F1212;
  font-weight: 500;
}

.consultation-status {
  font-weight: 700;
}
.consultation-status--undone {
  color: #E0342D;
}
.consultation-status--done {
  color: #0F1212;
}

.consultation-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 16px 32px;
}

.details-card {
  padding: 16px;
  border-radius: 12px;
  background-color: #fff;
}

.details-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.consultation-card-row--status .consultation-row-value {
  flex: 1;
}

.status-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 20px;
  background-color: #E1E8EA;
}

.status-toggle-btn {
  height: 26px;
  padding: 0 12px;
  border: 0;
  border-radius: 16px;
  background-color: transparent;
  font-size: 12px;
  font-weight: 600;
  color: #5C6566;
}
.status-toggle-btn.active {
  background-color: #171F29;
  color: #fff;
}

.details-highlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background-color: #F0F3F4;
}

.details-section-title {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: #0F1212;
}

.details-section-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 500;
  line-height: 1.5;
  color: #5C6566;
}

.details-memo {
  margin-top: 16px;
}

.details-memo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.details-memo-save {
  height: 25px;
  padding: 6px 10px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 100%;
}

.details-divider {
  margin: 0;
  border: 0;
  border-top: 1px dashed #D4DCDC;
}

.details-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.details-timeline-item {
  position: relative;
  padding: 0 0 12px 20px;
}
.details-timeline-item:last-child {
  padding-bottom: 0;
}
.details-timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: -8px;
  left: 4px;
  width: 1px;
  background-color: #D4DCDC;
}

.details-timeline-dot {
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D4DCDC;
}

.details-timeline-item--active .details-timeline-dot {
  background-color: #0A9FA8;
}

.details-timeline-time {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 400;
  color: #A1A7A7;
}
.details-timeline-time strong {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 600;
  color: #0F1212;
}

.details-timeline-text {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #0F1212;
}

.mypage {
  padding: 24px 16px 32px;
}

.mypage-section-title {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #0F1212;
}

.mypage-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.mypage-setting-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background-color: #fff;
}

.mypage-setting-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #E1E8EA;
}
.mypage-setting-icon i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.mypage-setting-icon .icon-bell {
  background-image: url("../images/icon-bell.svg");
}
.mypage-setting-icon .icon-layers {
  background-image: url("../images/icon-layers.svg");
}

.mypage-setting-text {
  flex: 1;
  min-width: 0;
}
.mypage-setting-text strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 600;
  color: #0F1212;
}
.mypage-setting-text small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #5C6566;
}

.switch {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
}
.switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.switch-track {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-color: #D4DCDC;
  transition: background-color 0.2s ease;
}
.switch-track::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.switch input:checked + .switch-track {
  background-color: #0A9FA8;
}
.switch input:checked + .switch-track::before {
  transform: translateX(20px);
}

.mypage-info-card {
  padding: 16px;
  border-radius: 12px;
  background-color: #fff;
}

.member-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 100px;
  background-color: #E5F6F8;
  font-size: 12px;
  font-weight: 700;
  color: #0A9FA8;
}

.mypage-withdraw-btn {
  width: 100%;
  height: 40px;
  margin-top: 16px;
  border: 1px solid #D4DCDC;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #5C6566;
}

.login-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 105px 16px 48px;
  background: #F0F3F4;
}

.login-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.login-illustration img {
  width: 152px;
  height: 120px;
}

.login-brand-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 500;
  color: #5C6566;
}

.login-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.login-btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  transition: transform 0.15s ease;
}
.login-btn:active {
  transform: scale(0.98);
}

.login-signup {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #5C6566;
  display: flex;
  align-items: center;
  gap: 10px;
}
.login-signup a {
  font-weight: 700;
  color: #0A9FA8;
}

.sign-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #F0F3F4;
}
.sign-layout .layout-main {
  flex: 1;
}

.sign {
  padding: 24px 16px 32px;
}

.sign-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #0F1212;
}

.sign-desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #313A3A;
}

.sign-card {
  padding: 24px 16px;
  border-radius: 12px;
  background-color: #fff;
}

.sign-caption {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 400;
  color: #6A7281;
}

.sign-divider {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #D4DCDC;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkbox-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid #D4DCDC;
  border-radius: 6px;
  background-color: #fff;
}
.checkbox-box i {
  display: none;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-check-active.svg");
}

.checkbox input:checked + .checkbox-box {
  border-color: #0A9FA8;
  background-color: #0A9FA8;
}
.checkbox input:checked + .checkbox-box i {
  display: block;
}

.checkbox-label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #313A3A;
}

.agree-all {
  margin-bottom: 20px;
}
.agree-all .checkbox-label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
}

.agree-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.agree-view {
  font-size: 13px;
  font-weight: 400;
  color: #A1A7A7;
  text-decoration: underline;
}

.sign-submit-btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.15s ease;
}
.sign-submit-btn:active {
  transform: scale(0.98);
}

.layout-auth {
  background-color: #F0F3F4;
}

.auth {
  padding: 24px 16px 32px;
}

.auth-icon {
  margin-bottom: 24px;
}
.auth-icon img {
  width: 48px;
  height: 48px;
}

.auth-title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  color: #0F1212;
}

.auth-desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  line-height: 1.5;
  color: #313A3A;
}

.auth-btn {
  width: 100%;
  height: 44px;
  margin-bottom: 8px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.15s ease;
}
.auth-btn:active {
  transform: scale(0.98);
}

.auth-card {
  padding: 80px 20px;
  margin-bottom: 16px;
  border-radius: 16px;
  background-color: #fff;
  text-align: center;
}

.auth-card-label {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #5C6566;
}

.auth-phone-number {
  margin: 0 0 32px;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -1.2px;
  font-weight: 700;
  color: #0F1212;
}

.auth-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  margin: 0 0 16px;
  padding: 0 16px;
  border-radius: 40px;
  background-color: #FFEEEE;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #FF383C;
}

.auth-card-status {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #5C6566;
}

.auth-retry-btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #E1E8EA;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #5C6566;
}

.analysis {
  padding: 24px 16px 32px;
}

.analysis-icon {
  margin-bottom: 16px;
}
.analysis-icon img {
  width: 48px;
  height: 48px;
}

.analysis-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #0F1212;
}

.analysis-desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  line-height: 1.5;
  color: #313A3A;
}

.analysis-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.analysis-item {
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
}

.analysis-item-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #313A3A;
}

.analysis-submit-btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: #0A9FA8;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  transition: transform 0.15s ease;
}
.analysis-submit-btn:active {
  transform: scale(0.98);
}

.analysis-filter {
  position: relative;
  margin-bottom: 24px;
}
.analysis-filter .consultation-filter-label {
  line-height: 1.5;
}

.chart-card {
  padding: 40px 16px 20px;
  margin-bottom: 16px;
  border-radius: 12px;
  background-color: #fff;
}

.chart-desc {
  margin: 2px 0 12px;
  font-size: 13px;
  font-weight: 400;
  color: #5C6566;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 16px;
  padding: 0 4px;
}

.bar-chart-col {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}
.bar-chart-col:only-child {
  flex: 0 0 50%;
  max-width: 50%;
}

.bar-chart-track {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 96px;
}

.bar-chart-bar {
  position: relative;
  width: 100%;
  min-height: 4px;
  border-radius: 6px 6px 0 0;
  background-color: #0A9FA8;
}

.bar-chart-col:nth-child(1) .bar-chart-bar { background: var(--bar-color-0); animation-delay: 0.05s; }
.bar-chart-col:nth-child(2) .bar-chart-bar { background: var(--bar-color-1); animation-delay: 0.12s; }
.bar-chart-col:nth-child(3) .bar-chart-bar { background: var(--bar-color-2); animation-delay: 0.19s; }
.bar-chart-col:nth-child(4) .bar-chart-bar { background: var(--bar-color-3); animation-delay: 0.26s; }
.bar-chart-col:nth-child(5) .bar-chart-bar { background: var(--bar-color-4); animation-delay: 0.33s; }


.chart-legend li:nth-child(1) .chart-legend-num { background: var(--bar-color-0); }
.chart-legend li:nth-child(2) .chart-legend-num { background: var(--bar-color-1); }
.chart-legend li:nth-child(3) .chart-legend-num { background: var(--bar-color-2); }
.chart-legend li:nth-child(4) .chart-legend-num { background: var(--bar-color-3); }
.chart-legend li:nth-child(5) .chart-legend-num { background: var(--bar-color-4); }

.bar-chart-value {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  color: #0A9FA8;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 400;
  color: #313A3A;
}
.chart-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chart-legend-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: color-mix(in srgb, #057c82 100%, white);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.07px;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
}

.callpage-list__link {
  padding: 16px;
  border-radius: 12px;
  background-color: #fff;
}
/*# sourceMappingURL=style.css.map */
