/* 헤더 */
header {
  position: sticky;
  top: 0;
  left: 0;
  border-bottom: 1px solid #b1b8c750;
  background: var(--white);
  z-index: 10;
}

nav {
  padding: 10px 0;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
  -webkit-text-fill-color: #000;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

nav>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 58px;
}

.navigation>div:last-of-type {
  display: flex;
  gap: 8px;
  font-size: 16px;
}

.navigation>div:last-of-type>a {
  padding: 10px 16px;
}

.navigation>div:first-of-type>div:last-of-type {
  display: block;
  width: 83px;
  height: 19px;
  /* overflow: hidden; */
  /* background-image: url(../image/header/logo.png); */
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.navigation>div:first-of-type>div:first-of-type {
  display: none;
}

nav .member {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

nav .member a {
  position: relative;
}

nav .member span.event {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: max-content;
  background: var(--blue);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 6px;
  animation: updown 2s infinite;
  font-size: 12px;
}

nav .member span.event::after {
  position: absolute;
  top: calc(0% - 10px);
  left: 45%;
  content: " ";
  height: 0;
  border-bottom: 15px solid;
  border-left: 10px solid var(--opacity00);
  border-right: 10px solid var(--opacity00);
  color: var(--blue);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}

/* nav .member span.event 가 위 아래로 이동하는 애니메이션 */
@keyframes updown {
  0% {
    transform: translate(-50%, 50%);
  }

  50% {
    transform: translate(-50%, 80%);
  }

  100% {
    transform: translate(-50%, 50%);
  }
}

.membership {
  padding: 10px 8px;
  border-radius: 4px;
}

.membership>span:first-of-type {
  display: block;
}

.membership>span:last-of-type {
  display: none;
}

.login_button {
  padding: 12px 16px;
  background: var(--blue);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
}

.login_button:hover {
  background: #2a5bcd;
}

.login_button>span:first-of-type {
  display: block;
}

.login_button>span:last-of-type {
  display: none;
}

.user_icon {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #b1b8c720;
  color: var(--black60);
  font-size: 16px;
}

.user_icon:hover {
  background: #f0f4ff;
  box-shadow: var(--base-shadow);
}

.user_list {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  width: 340px;
}

.user_list>ul {
  border-top: 1px solid rgba(177, 184, 199, 0.5);
}

.user_list>div:last-of-type {
  border-top: 1px solid rgba(177, 184, 199, 0.5);
}

.user-name {
  font-size: 16px;
}

.user-email {
  color: #6b7280;
  font-size: 14px;
}

.manager-icon {
  display: inline-block;
  width: max-content;
  padding: 1px 4px;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
}

.log-out-button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #eef1f6;
}

.client-list-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111928;
}

.my-info {
  border-bottom: 1px solid #e5e7eb;
}

.my-client-list {
  max-height: 300px;
  overflow-y: scroll;
  font-size: 12px;
}

.my-client-list li {
  width: 100%;
}

.my-account {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

#clientFilterInput {
  padding: 2px 5px;
  border: 1px solid #ced4da;
}

#clientFilterInput:focus {
  outline: none;
}

.free-user-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  gap: 9px;
  padding: 20px 16px;
}

.free-user-list>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 18px 0 8px;
  background: var(--blue10);
  border-radius: 7px;
  width: 100%;
}

.free-user-list>a:hover {
  background: #e7efff;
}

.user_icon .my-page {
  position: relative;
}

.user_icon .my-page .comment {
  position: absolute;
  top: calc(100% + 10px);
  display: none;
  background: var(--black);
  color: var(--white);
  padding: 2px 5px;
  border-radius: 3px;
}

.user_icon .my-page:hover .comment {
  display: block;
}

/* 풋터 */
footer {
  border-top: 1px solid #b1b8c750;
}

aside {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
}

footer .logo {
  margin: 0 auto 24px;
  width: 80px;
  height: 16px;
  background-image: url(../image/footer/logo_gray.png);
  background-size: cover;
  background-position: center;
}

footer .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #b1b8c7;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.family_site_mobile,
.family_site {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  color: #b1b8c7;
  font-size: 12px;
  font-weight: 500;
}

.family_site_mobile {
  margin: 0 auto;
}

.family_site>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.family_site_mobile {
  display: none;
}

.family_site_svg>svg:last-of-type {
  display: none;
}

.family_site.action .family_site_svg>svg:first-of-type {
  display: none;
}

.family_site.action .family_site_svg>svg:last-of-type {
  display: block;
}

.family_site .family_site_list {
  position: relative;
  display: none;
  margin-top: 8px;
  width: max-content;
}

.family_site_mobile li {
  text-align: center;
}

.family_site.action .family_site_list {
  display: block;
}

.family_site_list li {
  padding: 4px 8px;
  font-weight: 500;
}

.family_site_list li:hover {
  border-radius: 7px;
  background: rgba(177, 184, 199, 0.15);
  color: var(--black);
}

.footer-more-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 auto 14px;
  width: max-content;
  color: var(--black60);
  font-size: 13px;
}

footer .info {
  text-align: center;
  font-size: 13px;
  color: var(--black60);
}

footer .info div {
  margin: 0 auto;
}

footer .info div span {
  margin-left: 10px;
}

footer .reserved {
  margin-top: 14px;
  font-size: 12px;
  color: #b1b8c7;
  text-align: center;
}

/* 기타 */

.blue_button {
  position: relative;
  padding: 16px 20px;
  border-radius: 30px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.blue_button:hover {
  background: #2a5bcd;
  box-shadow: var(--base-shadow);
}

.s_blue_button {
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.s_blue_button:hover {
  background: #2a5bcd;
  box-shadow: var(--base-shadow);
}

.black_button {
  padding: 16px 20px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.s_black_button {
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.display_nav {
  cursor: pointer;
}

.side_bar {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
  z-index: 5;
}

.side_bar_inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 246px;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: 0.3s all;
  z-index: 10;
}

.side_bar_inner .logo-box {
  padding: 68px 20px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side_bar_inner>div .logo {
  width: 82px;
  height: 19px;
  background: url(../image/header/logo.png) no-repeat center;
  background-size: contain;
}

.side_bar_inner .lists {
  padding: 0 6px 12px;
  border-bottom: 1px solid rgba(177, 184, 199, 0.5);
}

.side_bar_inner .list {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  padding: 8px 24px;
}

.side_bar_inner .list_children {
  padding: 8px 0 8px 40px;
}

.side_bar_inner .member {
  padding: 12px 6px 12px;
  font-size: 14px;
}

.menu1 {
  cursor: pointer;
  position: relative;
  padding: 12px 16px;
}

.menu1_title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu1_title>p {
  position: absolute;
  background: red;
  color: #ffffff;
  padding: 2px 4px;
  font-size: 10px;
  right: -20%;
  top: -5px;
  transform: translate(-50%, -50%);
  border-radius: 4px;
}

.menu1_title svg path {
  stroke: #b1b8c7;
}

.menu1_title>svg:first-of-type {
  display: block;
}

.menu1_title>svg:last-of-type {
  display: none;
}

.menu1_list {
  position: absolute;
  top: 110%;
  left: 0;
}

.menu1_list li {
  /* padding: 10px 16px;
    cursor: pointer; */
  font-weight: 600;
  position: relative;
}

/* .menu1_list li:last-of-type{
    color: var(--black80);
} */
.menu1:hover {
  border-radius: 7px;
  background: #f0f4ff;
}

.menu1:hover .menu1_title svg path {
  stroke: var(--black);
}

.menu1_list li p {
  position: absolute;
  display: none;
  left: 105%;
  top: 30%;
  width: max-content;
  padding: 4px 7px;
  background: var(--black);
  border-radius: 4px;
  color: #ffffff;
  z-index: 5;
}

.menu1_list li:hover p {
  display: block;
}

/* 검색 공통 디자인  */
.search {
  margin: auto;
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 140px;
}

.search .logo {
  display: none;
  width: 100px;
  height: 14px;
  background-image: url(../../image/main/logo.png);
  background-size: cover;
  margin: auto;
}

.search .title {
  font-size: 55px;
  font-weight: 800;
  margin-top: 250px;
  margin-bottom: 12px;
}

.search .title>span:first-of-type {
  display: block;
}

.search .title>span:last-of-type {
  display: none;
}

.search .sub_title {
  margin-bottom: 50px;
  color: var(--blue);
  font-size: 21px;
  font-weight: 600;
}

.search .search-sub_title {
  margin: auto;
  margin-bottom: 13px;
  width: 700px;
  text-align: left;
  color: var(--blue);
}

.search .input {
  position: relative;
  padding: 4px;
  border-radius: 30px;
  border: 2px solid var(--blue);
  background: #fff;
  width: 700px;
  margin: auto;
}

.listening-container {
  position: absolute;
  width: 812px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  z-index: -1;
  /* background: red; */
}

.ripple {
  position: absolute;
  /* border: 1px solid var(--blue10); */
  border-radius: 50px;
  background-color: var(--blue50);
  animation: ripple-effect 2s infinite;
  width: 700px;
  height: 60px;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.ripple:nth-child(1) {
  animation-delay: 0s;
}

.ripple:nth-child(2) {
  animation-delay: 0.7s;
}

.ripple:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes ripple-effect {
  0% {
    width: 700px;
    height: 60px;
    opacity: 1;
  }

  100% {
    width: 730px;
    height: 90px;
    opacity: 0;
  }
}

.input.action .listening-container {
  display: none;
}

.search .input>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search .input>div>div:nth-of-type(1) {
  padding: 12px 32px;
  /* border-right: 1px solid rgba(23, 43, 77, 0.30); */
}

.search .input>div>div:nth-of-type(1)>div {
  width: 15px;
  height: 15px;
  background-image: url(../image/main/Naver_Logotype\ 1.png);
  background-size: cover;
}

.search .input>div>div:nth-of-type(2) {
  position: relative;
  width: 78%;
}

.search .input>div>div:nth-of-type(2)>input {
  width: 100%;
}

.search .input>div>div:nth-of-type(2)>input:focus {
  outline: none;
}

.selection-box {
  position: absolute;
  border: 1px solid #000;
  z-index: 1000;
  opacity: 0.5;
  background-color: rgba(56, 116, 255, 1);
}

.excel_progress {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 398px;
  height: 168px;
  border-radius: 15px;
  background: var(--black);
  color: #fff;
  font-size: 16px;
  z-index: 5;
  transition: 0.5s all;
}

.excel_progress .out-line {
  margin-top: 16px;
  margin-bottom: 14px;
  width: 350px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
}

.excel_progress .in-line {
  width: 0%;
  height: 6px;
  border-radius: 3px;
  background: var(--blue);
}

.excel_progress .download {
  display: flex;
  gap: 30px;
}

.excel_progress .count {
  margin-top: 10px;
  font-size: 12px;
}

.show_more_button {
  text-align: center;
  padding: 40px;
}

.show_more_button>div {
  margin: 0 auto;
  width: max-content;
  cursor: pointer;
}

.screen-buttons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.small-screen {}

.download-cancel-button {
  transform: translateY(16px);
  color: #ffffff;
  font-size: 13px;
  background: var(--blue);
  padding: 4px 10px;
  border-radius: 8px;
}

.excel_progress.small {
  cursor: pointer;
  top: 95%;
  height: 60px;
  border-radius: 10px;
}

.excel_progress.small .download-cancel-button,
.excel_progress.small .count,
.excel_progress.small .screen-buttons,
.excel_progress.small .download,
.excel_progress.small .title {
  display: none;
}

.excel_progress.small .out-line {
  margin-top: 10px;
  margin-bottom: 0px;
}

.excel_progress .small-box {
  display: none;
}

.excel_progress.small .small-box {
  display: flex;
  gap: 5px;
  font-size: 14px;
}

.excel_progress.small .small-box span {
  color: var(--white50);
}

@keyframes shake {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  25% {
    transform: translate(-50%, -50%) rotate(5deg);
  }

  75% {
    transform: translate(-50%, -50%) rotate(-5deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0);
  }
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0;
  }

  10%,
  90% {
    opacity: 1;
  }
}

.toast-alert {
  position: fixed;
  top: 40%;
  left: 50%;
  width: max-content;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translate(-50%, -50%);

  border-radius: 8px;
  color: var(--white);
  font-family: Arial, sans-serif;
  visibility: hidden;
  /* Initially hide the alert */
  /* animation: fadeInOut 4s, shake 0.5s 0.5s forwards; */
  z-index: 9999;
}

.toast-alert.success {
  background: var(--black);
}

.toast-alert.green {
  background: #5eae39;
}

.toast-alert.warning {
  background: #ed5550;
}

.toast-alert.error {
  background: var(--red);
}

.toast-alert.info {
  background: #172b4d;
}

/* kakao-chat 오른쪽 하단에 고정으로  */
.kakao-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 22px;
  background: #ffe248;
  /* 이미지 가운데 정렬 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* inner shadow */
  box-shadow: 0 0 10px 0 #fff1a9;
}

.will-open {
  position: relative;
}

.will-open img {
  position: absolute;
  top: 0;
  left: 60%;
  z-index: 10;
}

/* logo Beta  */
.logo {
  position: relative;
}

.logo::after {
  content: "BETA";
  position: absolute;
  top: -5px;
  left: 105%;
  padding: 3px 3px 3px 4px;
  width: max-content;
  letter-spacing: 1px;
  border-radius: 5px;
  background: #b1b8c7;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
}

.modal.fade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal-dialog {
  padding: 60px 57px 40px;
  background-image: url(../image/footer/modal-background.webp);
  background-position: center;
  border-radius: 25px;
  color: #fff;
}

.modal-content {
  /* Modal Content Styling */
  margin: auto;
}

.modal-header {
  /* Modal Header Styling */
  margin-bottom: 20px;
  font-size: 35px;
}

.modal-body {
  /* Modal Body Styling */
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.modal-body>div {
  margin-bottom: 20px;
}

.modal-footer {
  /* Modal Footer Styling */
  padding: 15px;
  text-align: center;
}

.btn-secondary {
  /* Confirm Button Styling */
  background-color: var(--white);
  padding: 20px 100px;
  border-radius: 30px;
  color: var(--black);
  font-size: 17px;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--theme-blue);
  color: var(--background-white);
  border: none;
  border-radius: 8px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.server-inspection-guide-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.server-inspection-guide-box {
  width: 540px;
  height: 510px;
  border-radius: 25px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 2px 10px 0px #b1b8c756;
}

.server-inspection-guide-header {
  padding-top: 116px;
  width: 100%;
  height: 180px;
  color: #ffffff;
  font-size: 35px;
  font-weight: 800;
  text-align: center;
  background-image: url(../image/header/server-inspection-guide.png);
}

.server-inspection-guide-body {
  padding: 48px 20px 33px;
  text-align: center;
  color: #282828;
}

.server-inspection-guide-body>div:first-of-type {
  line-height: 150%;
}

.server-inspection-guide-body>div:last-of-type {
  line-height: 150%;
  margin-top: 10px;
  color: #28282850;
}

.server-inspection-guide-info {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #282828;
  border-bottom: 1px solid #282828;
  width: max-content;
  margin: 30px auto;
}

.server-inspection-guide-info>div {
  color: #282828;
  font-size: 17px;
  font-weight: 800;
}

.server-inspection-guide-info>div:first-of-type {
  min-width: 96px;
  max-width: 96px;
  padding: 28px 18px 24px;
  background: #f3f3f3;
  line-height: 120%;
}

.server-inspection-guide-info>div:last-of-type {
  font-size: 17px;
  font-weight: 700;
  padding: 28px 29px 24px;
}

.server-inspection-guide-info>div:last-of-type span {
  color: var(--blue);
}

.server-inspection-guide-info>div span {
  /* font-size: 14px;
    font-weight: 500; */
}

.server-inspection-guide-info>div b {
  color: var(--blue);
}

.server-inspection-guide-box button {
  background: var(--blue);
  padding: 15px 35px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 30px;
}

.server-inspection-guide-box button:hover {
  background: var(--blue50);
}

.loading-error {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  background: #0f1d3630;
}

.loading-error>div {
  padding: 33px 35px 32px;
  border-radius: 15px;
  background: #ffffff;
}

.loading-error>div>div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-error>div h2 {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.loading-error>div p {
  text-align: center;
  color: #555c6b;
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
}

.loading-error>div button {
  margin: 25px 0 0;
  padding: 18px 24px;
  background: var(--blue);
  border-radius: 9px;
  color: #ffffff;
}

.notification-modal {
  position: fixed;
  max-width: 600px;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  box-shadow: 0px 4px 15px 0px #4b577545;
  border-radius: 25px;
  background-color: #ffffff;
  padding: 45px 52px;
}

.notification-modal h2 {
  margin-bottom: 30px;
  font-size: 35px;
}

.notification-modal p {
  line-height: 150%;
  font-size: 16px;
}

.notification-modal button {
  margin-top: 40px;
  background-color: var(--blue);
  border-radius: 20px;
  padding: 10px 16px;
  color: var(--white);
}

._footer_top_button_ {
  position: fixed;
  right: 29px;
  bottom: 160px;
  width: 56px;
  height: 56px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #172b4d;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 1px 1px 8px 0 #00000025;
}

._footer_top_button_:hover {
  box-shadow: 1px 1px 12px 0 #00000060;
}

@media screen and (max-width: 812px) {
  header {
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
  }

  nav {
    padding: 14px 10px;
  }

  .navigation {
    gap: 18px;
  }

  .navigation>div:first-of-type {
    width: max-content;
    height: auto;
    overflow: hidden;
  }

  .navigation>div:last-of-type {
    gap: 18px;
  }

  .navigation>div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }

  .navigation>div:first-of-type>div:first-of-type {
    display: block;
  }

  .navigation>div:first-of-type>div:last-of-type {
    /*display: none;*/
    width: 92px;
    height: 19px;
  }

  .navigation>div:last-of-type {
    display: none;
  }

  .navigation>div:last-of-type>a {
    padding: 6px;
  }

  nav .member {
    gap: 6px;
  }

  .side_bar_inner .logo>div {
    margin: 0 auto;
    width: 83px;
    height: 19px;
    background-image: url(../image/header/logo.png);
    background-size: cover;
    background-position: center;
  }

  .membership>span:first-of-type {
    display: none;
  }

  .membership>span:last-of-type {
    display: block;
  }

  .login_button>span:first-of-type {
    display: none;
  }

  .login_button>span:last-of-type {
    display: block;
  }

  .blue_button {
    width: 60px;
    padding: 15px 8px;
    border-radius: 50px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }

  .black_button {
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--black);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
  }

  aside {
    justify-content: center;
    padding: 56px 0;
  }

  .family_site {
    display: none;
  }

  .family_site_mobile {
    display: flex;
    margin-bottom: 40px;
  }

  .search .search-sub_title,
  .search .input {
    width: 95%;
  }

  /* 검색 공통 디자인 */
  .search {
    padding-bottom: 16px;
  }

  .search .logo {
    display: block;
    margin-bottom: 36px;
  }

  .search .sub_title {
    margin-top: 80px;
    font-size: 16px;
  }

  .search .title {
    font-size: 34px;
    line-height: 120%;
  }

  .sub_title>span {
    display: block;
  }

  .search .title>span:first-of-type {
    display: none;
  }

  .search .title>span:last-of-type {
    display: block;
  }

  .input {
    width: 330px;
    margin: auto;
  }

  .search .input>div>div:nth-of-type(1) {
    padding: 15px 12px;
  }

  .search .input>div>div:nth-of-type(2) {
    width: 75%;
    padding: 0 12px;
  }

  .search .input>div>div:nth-of-type(1)>div {
    width: 15px;
    height: 15px;
    background-image: url(../image/main/Naver_Logotype\ 1.png);
    background-size: cover;
  }

  footer .info {
    gap: 0;
  }

  footer .logo {
    margin: auto;
    margin-bottom: 40px;
  }

  .info {
    text-align: center;
  }

  .info>div {
    margin: auto;
  }

  .info>div>span {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

  .ripple {
    width: 360px;
    height: 60px;
  }

  .ripple:nth-child(1) {
    animation-delay: 0s;
  }

  .ripple:nth-child(2) {
    animation-delay: 0.7s;
  }

  .ripple:nth-child(3) {
    animation-delay: 1.2s;
  }

  @keyframes ripple-effect {
    0% {
      width: 350px;
      height: 60px;
      opacity: 1;
    }

    100% {
      width: 360px;
      height: 100px;
      opacity: 0;
    }
  }

  .listening-container {
    position: absolute;
    width: 360px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    z-index: -1;
    /* background: red; */
  }

  .search .search-sub_title {
    text-align: center;
  }

  .search .input>div.listening-container {
    display: none;
  }

  .notification-modal {
    padding: 35px 27px;
  }

  ._footer_top_button_ {
    position: fixed;
    right: 25px;
    bottom: 74px;
    width: 44px;
    height: 44px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #172b4d;
    cursor: pointer;
    z-index: 99999;
  }

  .membership.announcement {
    display: none;
  }
}

@media screen and (max-width: 360px) {
  nav {
    padding: 14px 10px;
  }

  .navigation {
    gap: 12px;
  }

  .navigation>div:last-of-type {
    gap: 12px;
  }

  .login_button {
    padding: 10px 12px;
  }

  nav .member {
    gap: 4px;
  }

  .membership {
    padding: 7px 5px;
  }

  /* 검색 공통 디자인 */
  .search .input {
    width: 90%;
  }

  .listening-container {
    width: 100%;
  }

  .ripple {
    width: 100%;
    height: 60px;
  }

  .ripple:nth-child(1) {
    animation-delay: 0s;
  }

  .ripple:nth-child(2) {
    animation-delay: 0.7s;
  }

  .ripple:nth-child(3) {
    animation-delay: 1.2s;
  }

  @keyframes ripple-effect {
    0% {
      width: 95%;
      height: 60px;
      opacity: 1;
    }

    100% {
      width: 100%;
      height: 100px;
      opacity: 0;
    }
  }

  .modal-header {
    font-size: 20px;
  }

  .btn-secondary {
    padding: 20px 50px;
  }

  .modal-dialog {
    padding: 30px 20px 20px;
  }
}

@media screen and (max-width: 280px) {
  .menu>div>ul>li {
    font-size: 14px;
  }
}

/* Layer Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 반투명 배경 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  /* 다른 요소들보다 위에 표시 */
}

.popup-container {
  /* Modals */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 42px;
  gap: 10px;

  position: relative;
  /* left, top 제거하고 중앙 정렬 */
  width: 351px;
  /* height: 191px; 내용에 따라 자동 조절되도록 제거 */

  /* Background/White */
  background: #ffffff;
  /* 그림자 */
  box-shadow: 0px 2px 6.1px rgba(177, 184, 199, 0.43);
  border-radius: 16px;
}

.popup-content-wrapper {
  /* Frame 2647 */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 27px;

  width: 267px;
  /* height: 151px; 내용에 따라 자동 조절 */

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0 auto;
  /* 내부 컨텐츠 중앙 정렬 */
}

.popup-text-icon-group {
  /* Frame 2646 & 2645 */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 8px;
  /* gap 조정 */

  width: 267px;
  /* height: 87px; 내용에 따라 자동 조절 */

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.popup-icon {
  /* move to folder */
  width: 57px;
  height: 57px;
  background-size: contain;
  /* 아이콘 크기에 맞게 조절 */
  background-repeat: no-repeat;
  background-position: center;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.popup-main-text {
  /* 상품분석 페이지로 넘어가시겠습니까? */
  width: 267px;
  /* height: 22px; 내용에 따라 자동 조절 */

  font-family: "Pretendard", sans-serif;
  /* 폰트 및 fallback 추가 */
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  /* 수정: line-height */
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  /* 텍스트 중앙 정렬 */

  /* Theme color/Black */
  color: #282828;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.popup-sub-text {
  /* 전문 담당자가 ... */
  width: 225px;
  /* height: 61px; 내용에 따라 자동 조절 */
  margin-top: 8px;
  /* 메인 텍스트와의 간격 */

  font-family: "Pretendard", sans-serif;
  /* 폰트 및 fallback 추가 */
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  /* 수정: line-height */
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  /* 텍스트 중앙 정렬 */

  /* Grayscale/800 */
  color: #5d6b82;

  /* Inside auto layout */
  flex: none;
  order: 1;
  /* main-text 아래에 오도록 */
  align-self: stretch;
  flex-grow: 0;
}

.popup-button-group {
  /* Frame 2927 */
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;

  width: 154px;
  height: 37px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.popup-confirm-button {
  /* Frame 1427 */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  gap: 10px;

  width: 81px;
  height: 37px;

  /* Theme color/Blue */
  background: #3874ff;
  border-radius: 10px;
  border: none;
  /* 버튼 기본 테두리 제거 */
  cursor: pointer;

  font-family: "Pretendard", sans-serif;
  /* 폰트 및 fallback 추가 */
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #ffffff;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.popup-cancel-button {
  /* Frame 2647 (두 번째) */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  gap: 10px;

  width: 69px;
  height: 37px;

  /* Grayscale/Gray */
  background: #b1b8c7;
  border-radius: 10px;
  border: none;
  /* 버튼 기본 테두리 제거 */
  cursor: pointer;

  font-family: "Pretendard", sans-serif;
  /* 폰트 및 fallback 추가 */
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #ffffff;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}