.opacity-0 {
  opacity: 0;
}
main {
  padding: 110px 0 30px;
}
.blank_keyword {
  height: 30vh;
}
section.menu {
  margin: 50px 0 40px;
}
.search .title {
  margin-bottom: 64px;
}

.search .sub_title {
  margin-top: 140px;
  margin-left: 30px;
  margin-bottom: 0px;
  color: var(--blue);
  font-size: 21px;
  font-weight: 600;
  /* background-image: url(../../image/main/ai-smart.png); */
  width: 259px;
  height: 60px;
  background-size: 259px 60px;
  background-position: center;
}
.recommended_keyword {
  position: absolute;
  left: 5%;
  top: 35px;
  padding: 10px;
  background: #fff;
  z-index: 5;
  width: 80%;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.recommended_keyword li {
  cursor: pointer;
  padding: 5px 10px;
}
.recommended_keyword li:hover {
  background: rgba(56, 116, 255, 0.15);
}
.menu > div {
  margin: auto;
  width: 812px;
  padding-bottom: 30px;
}
.menu > div > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.menu > div > ul > li {
  cursor: pointer;
  position: relative;
  font-size: 24px;
  padding: 24px 54px;
  color: var(--black40);
}
.menu > div > ul > li::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100% + 0px);
  left: 0;
  width: 0%;
  height: 4px;
  border-radius: 4px;
  background: var(--blue);
  transition: 1s all;
}
.menu > div > ul > li.action {
  border-radius: 10px 10px 0 0;
  background: #d4dfef60;
  color: var(--blue);
}
.menu > div > ul > li.action::after {
  width: 100%;
}
.menu > div > ul > li::before {
  content: "";
  position: absolute;
  display: block;
  top: calc(100% + 0px);
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(177, 184, 199, 0.25);
}
.menu > div > ul > li:hover {
  color: var(--black);
}
.menu > div > ul > li.action:hover {
  color: var(--blue);
}
.down_arrow {
  display: none;
}

.base_block {
  padding: 24px 25px;
  border-radius: 20px;
  background: rgba(177, 184, 199, 0.15);
}
.analyze_section .base_block {
  margin-bottom: 32px;
  padding: 24px;
}
.base_block_inner {
  border-radius: 15px;
  background: #fff;
}
.keyword_info_summary {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 16px;
}

.analyze_section .image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 110px;
  min-height: 110px;
  max-width: 110px;
  max-height: 110px;
  border-radius: 5px;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
  background-color: #00000003;
}
.analyze_section .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.keyword_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  margin-left: 24px;
  width: 460px;
}
.keyword_point {
  display: flex;
  gap: 16px;
}
.keyword_box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search_keyword {
  min-width: max-content;
  max-width: 84%;
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.analyze_section .category {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.category_percent {
  padding: 2px 5px;
  margin-left: 4px;
  margin-right: 16px;
  border-radius: 12px;
  background: #d8e1f6;
  color: var(--blue);
  font-weight: 600;
}
.category_explanation {
  color: #b1b8c7;
  font-size: 12px;
  font-weight: 500;
}
.category_more {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #b1b8c7;
  font-size: 12px;
  font-weight: 500;
  min-width: max-content;
}
.category_more .category_modal {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translate(-50%, 0%);
  min-width: 50px;
  width: max-content;
  min-height: 50px;
  border-radius: 8px;
  background: #f3f4f7;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  padding: 12px 12px 6px;
  color: var(--black);
  z-index: 5;
}
.category_more .category_modal > div {
  display: flex;
  margin-bottom: 6px;
}
.shopping_keyword {
  cursor: pointer;
  position: relative;
  min-width: max-content;
  padding: 4px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-radius: 15px;
  gap: 2px;
  width: 60px;
  justify-content: flex-end;
}
.shopping_keyword.shopping {
  background: rgba(3, 207, 93, 0.19);
  color: #007935;
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.shopping_keyword.information {
  background: var(--blue30);
  color: var(--blue);
  flex-direction: row-reverse;
}
.shopping_keyword::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 3px 7px 0 var(--gray-600);
}

.shopping_keyword.shopping:hover::after {
  animation: moveLeft 1s ease-in-out forwards;
}
.shopping_keyword.information:hover::after {
  animation: moveRight 1s ease-in-out forwards;
}

.pdf_download_button {
  display: inline-flex;
  padding: 14px 22px;
  align-items: center;
  gap: 8px;
  border-radius: 15px;
  border: 0.5px solid rgba(23, 43, 77, 0.3);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
}
.pdf_download_button:hover {
  background: rgba(177, 184, 199, 0.15);
}
.pdf_download_button > div {
  width: max-content;
}

.condition_info_summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 12px 12px;
}
.condition_info_summary .last_point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0px;
  margin-bottom: 85px;
  font-size: 26px;
  font-weight: 600;
}
.condition_points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 12px;
  /* width: 212px; */
  padding: 12px 26px;
  border-radius: 7px;
  background: rgba(177, 184, 199, 0.15);
  font-size: 12px;
  font-weight: 500;
}
.condition_points > div {
  display: flex;
  flex-direction: column;
}
.condition_points > div > span:nth-of-type(2) {
  /* color: #B1B8C7; */
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}
.keyword_analyze {
  position: relative;
}
.keyword_analyze_arrow {
  position: absolute;
  display: none;
}

.keyword_analyze > div {
  display: flex;
  gap: 12px;
}
.keyword_analyze > div:first-of-type {
  margin-bottom: 19px;
}
.keyword_analyze > div > div {
  padding: 16px 12px;
  border: 1px solid #b1b8c725;
  border-radius: 10px;
  background: #f3f4f7;
}
.keyword_analyze > div > div:nth-of-type(1) {
  min-width: 132px;
  max-width: 132px;
}
.keyword_analyze > div > div:nth-of-type(2) {
  min-width: 141px;
  max-width: 141px;
}
.keyword_analyze > div > div:nth-of-type(3) {
  min-width: 175px;
  max-width: 175px;
}
.keyword_analyze > div > div.sales-amount:nth-of-type(1) {
  min-width: 48%;
  max-width: 48%;
}
.keyword_analyze > div > div.sales-amount:nth-of-type(2) {
  min-width: 49%;
  max-width: 49%;
}
.data_info_summary {
  text-align: center;
  padding: 20px 16px;
  width: 66%;
}
.data_info_summary > div:nth-of-type(1) {
  margin-bottom: 15px;
  text-align: left;
  font-size: 16px;
}
.data_info_summary > div:nth-of-type(2) {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
}
.data_title_div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 10px;
  padding: 3px 0;
  /* width: 156px; */
  border-radius: 7px;
  /* background: rgba(177, 184, 199, 0.15); */
}
.icon_box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  overflow: hidden;
}
.icon_box.red {
  background-image: url(../../image/main/data-icon1.png);
}
.icon_box.green {
  background-image: url(../../image/main/data-icon2.png);
}
.icon_box.blue {
  background-image: url(../../image/main/data-icon3.png);
}
.keyword_value {
  display: flex;
  gap: 4px;
  font-size: 24px;
  font-weight: 600;
}
.data_title_div > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.competition_rate {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.data_title_div .very_bad {
  background: rgba(241, 44, 1, 0.19);
  color: #f12c01;
  padding: 4px;
  font-size: 13px;
  font-weight: 500;
}
.data_title_div .bad {
  background: rgba(200, 80, 0, 0.19);
  color: rgb(200, 80, 0);
  padding: 4px;
  font-size: 13px;
  font-weight: 500;
}
.data_title_div .normal {
  background: rgba(100, 200, 0, 0.19);
  color: rgb(100, 200, 0);
  padding: 4px;
  font-size: 13px;
  font-weight: 500;
}
.data_title_div .good {
  background: rgba(0, 255, 0, 0.19);
  color: rgb(4 163 4);
  padding: 4px;
  font-size: 13px;
  font-weight: 500;
}

.analyze_section .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.analyze_section .title > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.analyze_section .title > div > div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
}
.analyze_section .sub-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 800;
}

.analyze_section .sub-title > div:last-of-type .blue {
  color: var(--blue);
}
.analyze_section .sub-title > div:last-of-type .red {
  color: var(--red);
}
.type_select_button_box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 30px;
  color: #b1b8c7;
  font-size: 16px;
  font-weight: 600;
}
.type_select_button_box .action {
  color: var(--black);
}
.check_select_chart {
  font-size: 12px;
  font-weight: 500;
}
.check_select_chart div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
.check_select_chart .cicle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.check_select_chart .cicle.blue {
  background: var(--blue);
}
.check_select_chart .cicle.sky {
  background: #62afd5;
}
.check_select_chart .cicle.green {
  background: #03cf5d;
}
.select_chart_data {
  cursor: pointer;
}
.select_chart_data > span:first-of-type {
  display: block;
}
.select_chart_data > span:last-of-type {
  display: none;
}
.analyze_section .title > div > div .category_percent {
  font-size: 14px;
}
.analyze_section .title > div > div .selected_category {
  font-size: 12px;
  color: var(--black60);
}
.category_1 {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 16px;
  margin-bottom: 16px;
}
.category_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.category_1 > div,
.category_2 > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
}
.category_1 > div > div:first-of-type,
.category_2 > div > div:first-of-type {
  padding: 0 20px;
}
.category_1 > div > div:first-of-type p,
.category_2 > div > div:first-of-type p {
  margin-top: 4px;
  color: var(--black60);
  font-size: 13px;
}
.analyze_section .title .naver_tap_title_button,
.category_title_button {
  display: none;
}

.week_chart,
.age_chart {
  width: 100%;
  margin-top: 20px;
}
.week_chart .grafs,
.age_chart .grafs {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.week_chart .grafs > div,
.age_chart .grafs > div {
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #b1b8c7;
  font-size: 10px;
  font-weight: 500;
}
.week_chart .grafs .graf,
.age_chart .grafs .graf {
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  background: #b1b8c7;
  width: 29px;
  height: 0%;
}

.week_chart .grafs .graf > p,
.age_chart .grafs .graf > p {
  position: absolute;
  display: none;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -50%);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.week_chart .grafs .graf:hover,
.age_chart .grafs .graf:hover {
  background: var(--blue);
}
.week_chart .grafs .graf:hover > p,
.age_chart .grafs .graf:hover > p {
  display: block;
}

.bar_chart {
  width: 100%;
  margin-top: 40px;
  padding: 0 24px;
}
.bar_chart span {
  color: #3975ff;
  font-weight: 600;
}
.bar_chart > div {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  gap: 4px;
}
.left_chart {
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  background: #b1b8c7;
  height: 24px;
  width: 82%;
}

.right_chart {
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  background: rgba(177, 184, 199, 0.15);
  height: 24px;
  width: 18%;
}
.right_chart > div,
.left_chart > div {
  position: absolute;
  bottom: calc(100% + 0px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
}
.category-data-comment,
.right_chart > div.category-data-comment,
.left_chart > div.category-data-comment {
  position: absolute;
  display: none;
  bottom: -45px;
  left: 50%;
  transform: translate(-50%, 0%);
  padding: 4px 8px;
  width: max-content;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  z-index: 3;
}
.category-data-comment::after {
  position: absolute;
  top: -10px;
  left: calc(50% - 12px);
  content: " ";
  height: 0;
  z-index: -1;
  border-bottom: 12px solid;
  border-left: 12px solid var(--opacity00);
  border-right: 12px solid var(--opacity00);
  color: var(--black);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}
.left_chart:hover > .category-data-comment,
.right_chart:hover > .category-data-comment,
.age_chart .grafs .graf:hover > .category-data-comment {
  display: block;
}

.left_chart:hover {
  background: var(--blue);
}
.right_chart:hover {
  background: rgba(56, 116, 255, 0.15);
}
.section_tap_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.section_tap_content > div {
  padding: 20px 24px 24px;
}
.section_tap_content .title {
  justify-content: center;
}
.section_tap_content ul {
  margin-top: 20px;
  height: calc(45px * 3);
  overflow: hidden;
}
.section_tap_content ul.open {
  height: max-content;
}
.section_tap_content ul > li {
  padding: 12px 24px;
  margin-bottom: 6px;
  border-radius: 7px;
  background: var(--blue08);
  font-size: 15px;
}
.more-button {
  cursor: pointer;
  padding: 12px 24px;
  text-align: center;
  font-size: 15px;
  color: var(--black60);
}

/* --- 키워드 색션 --- */
.keyword_section {
  position: relative;
}
.keyword_section .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.keyword_section .header .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
}
.keyword_section .header .title .count {
  color: var(--black60);
  font-size: 14px;
  font-weight: 600;
}
.excel_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--base-shadow);
  font-size: 12px;
  font-weight: 500;
}
.keyword_section .body {
  position: relative;
  padding: 12px 0;
  padding-left: 4px;
  border-radius: 15px;
  background: #fff;
}
.none-auth {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff95;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 150%;
}
.none-auth > div:nth-of-type(1) {
  font-size: 16px;
  font-weight: 800;
}
.none-auth > div:nth-of-type(2) {
  font-size: 14px;
  font-weight: 600;
  color: var(--black60);
}
.none-auth > div:nth-of-type(3) a {
  display: block;
  margin-top: 20px;
}

.none-extension {
  width: 375px;
  height: 17px;
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  display: flex;
  align-items: center;
  text-align: center;
  color: rgba(23, 43, 77, 0.6);
  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.keyword_section .body ul {
  /* max-height: 843px;
    max-height: 85vh; */
  /* overflow-y: scroll; */
}
.keyword_section .content {
  display: flex;
  margin: 0 auto;
  width: max-content;
  font-size: 12px;
  min-height: 20px;
}
.keyword_section .content.title {
  margin: 0;
  margin-left: 17px;
  font-weight: 500;
}
.keyword_section .content > div {
  border-right: 1px solid #b1b8c760;
  border-bottom: 1px solid #b1b8c760;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.keyword_section .content:first-of-type > div {
  border-top: 1px solid #b1b8c760;
}
.keyword_section .content > div:last-of-type {
  border-right: none;
}
.keyword_section .body > div.content > div {
  color: #b1b8c7;
  border-top: none;
  border-right: none;
  border-bottom: none;
  gap: 4px;
}
.keyword_section .body > div.content.title .product-count {
  cursor: pointer;
}
.keyword_section .body > div.content.title .product-count path {
  fill: #b1b8c7;
}
.keyword_section .body > div.content.title .product-count.DESC path:nth-of-type(1) {
  fill: var(--black);
}
.keyword_section .body > div.content.title .product-count.ASC path:nth-of-type(2) {
  fill: var(--black);
}
.keyword_section .body > div.content > div.product-count:hover {
  color: var(--black);
}
.keyword_section .body > div.content.title .search-count {
  cursor: pointer;
}
.keyword_section .body > div.content.title .search-count path {
  fill: #b1b8c7;
}
.keyword_section .body > div.content.title .search-count.DESC path:nth-of-type(1) {
  fill: var(--black);
}
.keyword_section .body > div.content.title .search-count.ASC path:nth-of-type(2) {
  fill: var(--black);
}
.keyword_section .body > div.content > div.search-count:hover {
  color: var(--black);
}
.keyword_section .content > div:nth-of-type(1) {
  width: 220px;
  justify-content: flex-start;
  padding-left: 12px;
  background: rgba(177, 184, 199, 0.15);
  font-size: 14px;
  overflow: hidden;
}
.all-view {
  cursor: pointer;
  display: inline-block;
  border: 1px solid var(--black50);
  padding: 2px 3px;
  margin-left: 5px;
  border-radius: 2px;
}
.all-view:hover {
  background: var(--black10);
}
.keyword_section .content.title > div:nth-of-type(1) {
  background: #fff;
}
.keyword_section .content > div:nth-of-type(2) {
  padding-left: 14px;
  justify-content: flex-start;
  min-width: 190px;
}
.keyword_section .content > div:nth-of-type(3) {
  min-width: 86px;
}
.keyword_section .content > div:nth-of-type(4) {
  width: 90px;
}
.keyword_section .content > div:nth-of-type(5) {
  width: 74px;
}
.keyword_section .content > div:nth-of-type(6) {
  width: 70px;
}
.keyword_section .content > div:nth-of-type(7) {
  width: 82px;
}
.keyword_section .content > div:nth-of-type(8) {
  width: 85px;
  border-right: none;
}
.keyword_section .body ul .content:hover {
  background: rgba(56, 116, 255, 0.04);
}
.information-box {
  cursor: pointer;
  position: relative;
}
.information-comment {
  position: absolute;
  display: none;
  padding: 4px 7px;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -15%);
  width: max-content;
  background: var(--black);
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  line-height: 150%;
  z-index: 3;
}
.information-box:hover .information-comment {
  display: block;
}

.comp_idx {
  border-radius: 5px;
  padding: 2px 4px;
}
.comp_idx.red {
  background: rgba(241, 44, 1, 0.19);
  color: #f12c01;
}
.comp_idx.blue {
  background: rgba(56, 116, 255, 0.19);
  color: var(--blue);
}
.comp_idx.green {
  background: rgba(3, 207, 93, 0.19);
  color: #007935;
}
.up_arrow {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 50px auto 50px;
  animation: float 2s ease-in-out infinite;
  color: #b1b8c7;
  font-size: 18px;
  font-weight: 300;
}
.up_arrow:hover {
  color: var(--black);
}

/* --- 상품리스트 --- */
.product_section .header {
  margin-bottom: 24px;
}
.product_section .header .title {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
}
.product_section .body {
  position: relative;
  max-height: 960px;
  max-height: 80vh;
  overflow-y: scroll;
}
.product_section .body li {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  border-radius: 15px;
  background: #fff;
  margin-bottom: 12px;
}
.product_section .body li:hover {
  box-shadow: 0px 2px 0px 6px #b1b8c743;
  -webkit-box-shadow: 0px 2px 6px 0px #b1b8c743;
}
.product_section .body li:hover .product-title {
  text-decoration: underline;
}
.product_section .product_card {
  display: flex;
  font-size: 14px;
}
.product_section .product_card.mo {
  display: none;
}
.product_section .product_card .image {
  position: relative;
  min-width: 118px;
  height: 118px;
  border-radius: 5px;
}
.product_section .product_card .image div {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  padding: 4px 6px;
  color: #fff;
}
.product_section .product_card .image div.green {
  background: #03cf5d;
}
.product_section .product_card .image div.blue {
  background: var(--blue);
}
.product_section .product_card .info > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.product_section .product_card .category {
  display: flex;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
}
.product_section .mall-grand {
  color: #03cf5d;
}
.product_section .product_card .mall {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 5px;
  background: rgba(177, 184, 199, 0.15);
  font-size: 13px;
}
.product_section .product_card .mall > div:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 70px;
}
.product_section .product_card .price_box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
}
.product_section .product_card .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 16px;
  min-width: 530px;
  max-width: 530px;
  font-size: 17px;
  font-weight: 700;
  padding-right: 20px;
}
.product_section .product_card .month {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 6px;
  font-weight: 500;
}
.product_section .product_card .month .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  gap: 4px;
  background: rgba(177, 184, 199, 0.15);
}
.product_section .product_card .option {
  display: flex;
  gap: 32px;
  color: rgba(23, 43, 77, 0.8);
  font-size: 13px;
  font-weight: 500;
}
.product_section .product_card .option span {
  margin-left: 5px;
  font-weight: 700;
}
.product_section .product_card .info .price {
  color: var(--blue);
  font-size: 17px;
  font-weight: 600;
}
.product_info {
  line-height: 123%;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.monitoring{
  display: none !important;
}
.monitoring-title {
  margin-bottom: 6px;
  color: #a1a7b7;
}
.toggle-button {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #b1b8c750;
  padding: 2px 4px;
  width: 47px;
  height: 19px;
  border-radius: 10px;
  color: #a1a7b7;
  font-size: 12px;
  font-weight: 600;
}
.toggle-button .inner {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  left: 2px;
  top: 2px;
  transition: 0.5s all;
}
.toggle-button .on {
  display: none;
}
.toggle-button.action {
  justify-content: flex-start;
  background: var(--black);
  color: #ffffff;
  padding: 2px 7px;
}
.toggle-button.action .inner {
  left: calc(100% - 17px);
}
.toggle-button.action .on {
  display: block;
}
.toggle-button.action .off {
  display: none;
}
.toggle-hover {
  position: absolute;
  display: none;
  top: calc(100% + 15px);
  left: 30%;
  transform: translate(-50%, 0);
  padding: 5px;
  border-radius: 4px;
  width: max-content;
  background: var(--black);
  color: #ffffff;
}
.toggle-hover::after {
  position: absolute;
  top: calc(0% - 10px);
  left: calc(50% - 10px);
  content: " ";
  height: 0;
  border-bottom: 15px solid;
  border-left: 10px solid var(--opacity00);
  border-right: 10px solid var(--opacity00);
  color: var(--black);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}
.toggle-button:hover .toggle-hover {
  display: block;
}
.search_chart {
  position: relative;
  height: 300px;
}

.category_chart {
  height: 200px;
  width: 100%;
}

.loading_section {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}
.loading_section .character {
  background-image: url(../../image/main/output-onlinegiftools.gif);
  background-size: cover;
  width: 113px;
  height: 120px;
}
.loading_summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.loading_summary > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
}
.loading-data {
  margin: 0 auto;
}
.loading-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
}
.loading {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #00000020;
  border-top: 2px solid var(--blue);
  border-radius: 50%;
  animation: rotation 1s ease-in-out infinite;
}
.loading-big {
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  animation: rotation 1s ease-in-out infinite;
}
.loading-icon-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  overflow: hidden;
}
.loading-icon-box > div {
  transition: all 0.1s;
}
.loading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  border-radius: 50%;
}
.step-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.step-1 .loading-icon-box > div {
  transform: translateY(-0%);
}
.step-2 .loading-icon-box > div {
  transform: translateY(-33.33%);
}
.step-3 .loading-icon-box > div {
  transform: translateY(-66.66%);
}
.step-comment {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.loading-1 {
  background: var(--blue);
}
.loading-2 {
  background: #6c98ff;
}
.loading-3 {
  background: #16bdca;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.category_pc {
  display: block;
}
.category_mo {
  display: none;
}

.keyword-loading {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white) 60;
  z-index: 3;
}
.keyword-loading > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.keyword-loading .loading-big {
  width: 30px;
  height: 30px;
}

.popular-keyword-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.popular-keyword-title {
  min-width: 120px;
  color: var(--black40);
}
.popular-keyword-box > div:last-of-type {
  display: flex;
  align-items: center;
}
.popular-keyword-contents {
  padding-left: 20px;
  width: 220px;
  text-align: left;
}
.popular-keyword-contents > ul > li span:first-of-type {
  color: var(--blue);
}
.popular-keyword-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--black90);
  color: var(--white);
  font-size: 14px;
}
.show-rank-data:hover a {
  text-decoration: underline dotted;
  text-underline-offset: 5px;
}
.popular-keyword-button:hover {
  background: var(--black50);
}
.popular-keyword-ranking {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1d3630;
  z-index: 20;
}
.popular-keyword-ranking > div {
  position: relative;
  width: 332px;
  height: 468px;
  background: var(--white);
  border-radius: 15px;
  border: 1px solid #b1b8c760;
  -webkit-box-shadow: 0px 15px 50px -12px #757f95;
  box-shadow: 0px 15px 50px -12px #757f95;
}
.popular-keyword-ranking > div > div {
  padding: 17px 81px;
  background: var(--blue);
  border-radius: 15px 15px 0 0;
  text-align: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}
.popular-keyword-ranking > div > ul {
  padding: 12px;
}
.popular-keyword-ranking > div > ul > li {
  display: flex;
  gap: 30px;
  padding: 10px 12px;
  font-size: 18px;
  font-weight: 500;
}

.popular-keyword-ranking > div > ul > li > span:first-of-type {
  width: 20px;
  text-align: right;
  color: var(--blue);
}
.popular-keyword-ranking > div > ul > li > a {
  cursor: pointer;
  color: var(--black80);
}
.popular-keyword-ranking > div > ul > li:hover {
  background: var(--blue08);
  border-radius: 8px;
}
.popular-keyword-ranking > div > ul > li:hover > a {
  text-decoration: underline dotted;
}

.popular-keyword-ranking > div > button {
  position: absolute;
  top: calc(100% + 60px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popular-keyword-ranking > div > button:hover {
  -webkit-box-shadow: 0px 0px 0px 6px rgba(23, 43, 77, 0.2);
  box-shadow: 0px 0px 0px 6px rgba(23, 43, 77, 0.2);
}

.none-keyword {
  margin-bottom: 20vh;
}
.search-guid {
  position: absolute;
  display: none;
  left: calc(100% - 40px);
  bottom: calc(100% + 10px);
  transform: translate(-50%, -50%);
  padding: 5px 8px;
  width: max-content;
  border-radius: 4px;
  background: var(--white);
  font-size: 13px;
  -webkit-box-shadow: 0px 4px 15px 0px #c6d3f0;
  box-shadow: 0px 4px 15px 0px #c6d3f0;
}
.search-guid::after {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 15px);
  content: " ";
  height: 0;
  z-index: -1;
  border-bottom: 15px solid;
  border-left: 15px solid var(--opacity00);
  border-right: 15px solid var(--opacity00);
  color: var(--white);
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
}

.input.action .search-guid {
  display: block;
  animation: moveY 1s ease-in-out infinite;
}
@keyframes moveY {
  0%,
  100% {
    transform: translate(-50%, -5px);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

#pc-mo-chart {
  position: relative;
}
.pc-mo-chart-after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 1px dashed #8b4242;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(10deg) scale(0.8);
  width: 130%;
}

.seo-modal-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050e2190;
  z-index: 20;
}
.seo-modal-1-box {
  position: relative;
  padding: 70px 0;
  width: 470px;
  height: 364px;
  background: #042267;
  /* background-image: url(../../image/main/seo-character.png); */
  background-repeat: no-repeat;
  background-position: 25% 100%;
  border-radius: 25px;
}
.seo-modal-1-title {
  margin: 0 auto;
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
}
.seo-modal-1-subtitle {
  position: relative;
  margin: 30px auto 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--blue);
  border-radius: 9px;
  width: max-content;
  padding: 13px 14px;
  animation: float 2s ease-in-out infinite;
}
.seo-modal-1-subtitle::after {
  position: absolute;
  top: calc(0% - 9px);
  left: calc(50% - 4px);
  content: " ";
  height: 0;
  border-bottom: 10px 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);
}

.seo-modal-1-subtitle span {
  font-size: 42px;
  font-weight: 300;
}
.seo-modal-1-button-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 55px;
}
.seo-modal-1-button {
  cursor: pointer;
  position: relative;
  background: #ffffff;
  width: 308px;
  height: 63px;
  padding: 15px 25px;
  padding-left: 35px;
  border-radius: 32px;
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0px 0px 0px 5px #042267;
  text-align: left;
  z-index: 2;
}
.seo-modal-1-button:hover {
  box-shadow: 0px 0px 0px 5px #00000000;
}
.seo-modal-1-button-box::before {
  content: "";
  position: absolute;
  width: 318px;
  height: 73px;
  border-radius: 50px;
  background: linear-gradient(to bottom right, #3874ff, #687698);
  z-index: 1;
}
.seo-modal-1-button > img {
  position: absolute;
  right: -30px;
  bottom: 0;
}

.seo-modal-1-close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
}
.seo-modal-1-close:hover {
  transform: scale(1.2);
}
.close-seo-modal-1 {
  cursor: pointer;
  display: flex;
  gap: 5px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}

.done-product {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 18px 55px;
  border-radius: 10px;
  background: #49505b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}
.done-product > div {
  margin: 0 auto;
  width: max-content;
  text-align: center;
  font-size: 15px;
  line-height: 130%;
}
.done-product > div:first-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 50%;
}
.keyword-more {
  margin: 0 auto;
  padding: 20px;
  width: max-content;
  text-align: center;
}
.keyword-more > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.keyword-more > div > div {
  cursor: pointer;
}
/* .keyword-more:hover{
    color: var(--black80);
} */
.page-button{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-button.action{
  background: var(--pale-gray);
  border-radius: 4px;
}
.seo-ai-title-section {
  margin-bottom: 34px;
  padding: 15px 24px 24px;
  background: #eff4ff;
  border-radius: 20px;
}
.seo-ai-title-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.seo-ai-title-section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 700;
}
.seo-ai-title-section-title span {
  color: var(--blue);
}
.seo-ai-title-section-title b {
  color: var(--blue);
  font-size: 14px;
  font-weight: 400;
}
.seo-ai-title-section-more {
  padding: 11px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: #d2ddf5;
  color: #282828;
}
.seo-ai-title-section-more:hover {
  background: #a4afc7;
}
.seo-ai-box {
  position: relative;
}
.seo-ai-title-box {
  padding: 16px;
  background: #ffffff;
  border-radius: 10px;
}
.seo-ai-title-box.blur {
  height: 150px;
  filter: blur(4px);
}
.seo-ai-title-box > div {
}
.seo-ai-title-box > div:first-of-type > div {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #282828;
  font-size: 15px;
  font-weight: 600;
  line-height: 150%;
}
.seo-ai-title span {
  display: none;
  color: #656565;
  font-size: 13px;
  font-weight: 500;
}
.seo-ai-title-count {
  color: #656565;
  font-size: 13px;
  font-weight: 500;
}
.seo-ai-title-box > div > ul {
  display: flex;
  gap: 4px;
  flex-direction: row;
  flex-wrap: wrap;
}
.seo-ai-title-box > div > ul li {
  cursor: pointer;
  background: #b1b8c720;
  padding: 4px 11px;
  font-size: 13px;
  line-height: 150%;
  border-radius: 8px;
}
.seo-ai-title-box > div > ul li:hover {
  background: #b1b8c790;
}
.seo-ai-title-copy-1,
.seo-ai-title-copy {
  cursor: pointer;
}
.seo-ai-title-copy:hover {
  transform: translateY(-2px);
}

.search-filter {
  display: flex;
  padding: 10px 16px;
  border: 1px solid #d5d5d5;
  font-size: 14px;
  background: #ffffff;
  border-radius: 25px;
}
.search-filter > select:focus {
  outline: none;
}
.search-filter input:focus {
  outline: none;
}
.blind-seo-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #ffffff90;
  border-radius: 10px;
}
.blind-seo-title > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.category-alert-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8e9eb;
  padding: 9px 9px 9px 12px;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 25px;
}
.category-alert-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.category-alert-button {
  cursor: pointer;
  padding: 7px 12px;
  background: #c81e1e;
  color: #ffffff;
  border-radius: 6px;
  line-height: 150%;
}
.category-alert-button:hover {
  background: #681e1e;
}

.product-summary-section {
  display: grid;
  grid-template-columns: 366px 207px 207px;
  margin-bottom: 34px;
  gap: 12px;
}
.product-summary-section > div {
  padding: 22px 14px;
  border: 1px solid #b1b8c730;
  border-radius: 15px;
}

.price-summary-section {
  position: relative;
}
.price-summary-header {
  width: max-content;
  margin: 0 auto 25px;
  text-align: center;
}
.price-summary-header > div:nth-of-type(1) {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 800;
}
.price-summary-header > div:nth-of-type(1) span {
  color: var(--blue);
}
.price-summary-header > div:nth-of-type(2) {
  line-height: 150%;
  font-size: 13px;
}
.price-summary-header > div:nth-of-type(2) b {
  font-weight: 700;
}

.keyword-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}
.keyword-section {
  position: relative;
}
.keyword-section .keyword_li {
  display: flex;
  padding: 4px 4%;
  justify-content: space-between;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 8px;
}
.keyword-section .keyword_li:last-of-type {
  margin-bottom: 0;
}
.keyword-section .keyword_li > div {
  display: flex;
  gap: 6px;
}
.keyword-section .keyword_li .num {
  color: var(--blue);
}
.keyword-section .keyword_li:hover {
  background: #e0e3ea;
  border-radius: 4px;
}
.keyword-section .keyword_li:hover .keyword {
  text-decoration: underline;
}

.product-shopping-summary {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff95;
}

.none-category-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
  gap: 7px;
}

/***********************        정보성 데이터          **************************/
.content-summary {
  display: flex;
  gap: 16px;
}
.keyword-info-box {
  padding: 12px;
  width: 330px;
}
.keyword-info-box > div:first-of-type {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}
.keyword-info-box > div:first-of-type span {
  font-weight: 400;
  margin-left: 12px;
  color: var(--black80);
}
.search-result-section {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.naver-search-result {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
}
.naver-search-name {
  display: flex;
  font-size: 15px;
  margin-bottom: 6px;
  align-items: center;
  gap: 3px;
}
.naver-search-value {
  font-size: 20px;
}

.contents-data {
  min-width: 512px;
  max-width: 512px;
}
.status-section {
  min-width: 236px;
  max-width: 236px;
}

.contents-data {
  padding: 20px;
}
.contents-data-title {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}
.data-block {
  background-color: #f3f4f7;
  border: 1px solid #b1b8c750;
  border-radius: 10px;
}
.contents-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 16px;
}
.contents-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  font-weight: 600;
}

.content-summary .data-block {
  padding: 12px 16px;
  margin-bottom: 7px;
}
.content-summary .data-block:last-of-type {
  margin-bottom: 0px;
}
.item-name {
  color: #4a5673;
  font-size: 14px;
}
.value-label {
  font-size: 24px;
}
.status-icon {
  margin: 32px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status-level {
  margin-bottom: 42px;
  text-align: center;
}
.status-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  justify-content: space-between;
  background-color: #b1b8c715;
  border-radius: 7px;
  padding: 14px 20px;
}
.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.status-item > div:nth-of-type(1) {
  color: #4a5673;
  font-size: 13px;
}
.status-item > div:nth-of-type(2) {
  font-size: 16px;
}
.status-item > div:nth-of-type(3) {
  font-size: 12px;
  color: var(--red);
}

/** 뉴스 섹션 **/
.news-section {
  margin-top: 68px;
  margin-bottom: 64px;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
.news-title {
  display: flex;
  font-size: 24px;
  font-weight: 700;
  align-items: center;
  gap: 3px;
}
.news-download button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  box-shadow: 0px 2px 6.1px 0 #b1b8c743;
  padding: 14px 13px;
}
.new-contents ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.new-contents li {
  border-radius: 15px;
  padding: 16px;
  background: #f3f4f7;
}
.new-contents li:hover {
  box-shadow: 0px 2px 8.1px 0 #b1b8c770;
}
.new-contents li:hover .news-title-text {
  text-decoration: underline;
}
.new-contents .news-link {
  display: flex;
  gap: 12px;
  line-height: 120%;
}
.new-contents .news-image {
  width: 104px;
  height: 104px;
  min-width: 104px;
  min-height: 104px;
  max-width: 104px;
  max-height: 104px;
  border-radius: 12px;
  overflow: hidden;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 9px;
}
.news-meta .icon {
  width: 18px;
}
.news-meta > span:last-of-type {
  color: var(--black60);
}
.news-title-text {
  margin-bottom: 9px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.news-description {
  color: #172b4d60;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-show-more {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 40px auto 0;
}

/** 블로그 섹션 **/
.blog-section {
  margin-bottom: 68px;
}
.blog-header {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.blog-item-header {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  font-family: 500;
}
.blog-item-header > div {
  font-size: 13px;
  color: #172b4d60;
}
.blog-item {
  margin-bottom: 20px;
}
.blog-item .blog-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.blog-item:hover .blog-title span {
  text-decoration: underline;
}
.blog-rank {
  min-width: 23px;
  max-width: 23px;
  color: var(--blue);
  font-size: 15px;
}
.blog-author {
  min-width: 140px;
  max-width: 140px;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.blog-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  min-width: 510px;
  max-width: 510px;
  font-size: 15px;
}
.blog-title div {
  min-width: 42px;
  padding: 4px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 13px;
}
.blog-title .b {
  background: #78cd50;
}
.blog-title .p {
  background: var(--blue);
}
.blog-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.blog-date {
  min-width: 80px;
  max-width: 80px;
  font-size: 13px;
}
.blog-views {
  min-width: 71px;
  max-width: 71px;
  font-size: 13px;
  text-align: right;
}
.blog-ad{
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 10px;
  padding: 2px;
  margin-left: 5px;
}

.datalap-section {
  padding: 24px;
}
.datalap-data-title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
}
.datalap-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.datalap-content {
  padding: 16px 20px;
}
.datalap-title {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 600;
}
.datalap-subtitle {
  font-size: 13px;
  color: var(--black60);
}
.in-ready {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.datalap-contents .none-data-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
  gap: 6px;
  color: var(--black50);
  font-size: 14px;
}
.datalap-contents .none-data-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: var(--black50);
  font-size: 14px;
}

.extension_install{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: #ffffff90;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;

}
.extension_install a {
  position: relative;
  padding: 20px 30px;
  background: var(--blue);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  color: #ffffff;

}


.no-image{
  color: var(--black40);
}

@media screen and (max-width: 812px) {
  main {
    padding: 0px 0 30px;
  }
  .search .title {
    margin-top: calc(86px + 64px);
    font-size: 36px;
  }
  .blank_keyword {
    height: 5vh;
  }
  .search {
    margin-bottom: 60px;
  }
  .down_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 36px;
  }
  .menu > div {
    width: 340px;
    margin-bottom: 34px;
  }
  .menu > div > ul {
    gap: 10px;
  }
  .menu > div > ul > li {
    padding: 13px 16px;
    font-size: 16px;
  }
  .category_percent {
    margin-right: 4px;
  }

  /* 경과 분석 정보 */
  .summary .base_block {
    background: none;
  }
  .keyword_info_summary {
    align-items: flex-start;
    padding: 12px 4px;
  }
  .keyword_info_summary.base_block_inner {
    background: #fff;
  }
  .keyword_info_summary > div:last-of-type {
    display: none;
  }
  .analyze_section .image {
    min-width: 81px;
    min-height: 81px;
  }
  .search_keyword {
    font-size: 20px;
  }
  .shopping_keyword {
    padding: 4px;
    font-size: 8px;
  }
  .analyze_section .category {
    align-items: flex-start;
    font-size: 12px;
  }
  .category_explanation {
    display: none;
    font-size: 8px;
  }
  .category_more {
    display: none;
  }
  .keyword_info {
    padding: 6px 0;
    margin-left: 6px;
    height: 80px;
  }
  .analyze_section {
    padding: 0 8px;
  }
  .analyze_section .base_block {
    padding: 0px;
    width: 100%;
    margin: 0 auto 16px;
    background: none;
  }
  .keyword_point {
    flex-direction: column;
    padding: 12px;
    border-radius: 12px;
    background: rgba(177, 184, 199, 0.15);
  }
  .condition_info_summary {
    padding: 12px 8px;
  }
  .condition_info_summary > div:nth-of-type(1) {
    width: 100%;
    border-radius: 2px;
    background: rgba(177, 184, 199, 0.15);
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
  }
  .condition_info_summary > div:nth-of-type(2) {
    display: flex;
    margin: 0 auto;
    padding: 10px;
  }
  .condition_info_summary .last_point {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .condition_points {
    width: 170px;
    background: none;
    row-gap: 5px;
    padding: 12px 6px 12px 15px;
  }
  .keyword_analyze {
    margin: 0 auto;
    width: 268px;
    /* overflow: hidden; */
  }
  .keyword_analyze > div {
    width: max-content;
    flex-direction: column;
    gap: 6px;
  }

  .keyword_analyze > div > div:nth-of-type(1) {
    min-width: auto;
    max-width: 100%;
  }
  .keyword_analyze > div > div:nth-of-type(2) {
    min-width: auto;
    max-width: 100%;
  }
  .keyword_analyze > div > div:nth-of-type(3) {
    min-width: auto;
    max-width: 100%;
  }
  .keyword_analyze > div > div.sales-amount:nth-of-type(1) {
    min-width: auto;
    max-width: 100%;
  }
  .keyword_analyze > div > div.sales-amount:nth-of-type(2) {
    min-width: auto;
    max-width: 100%;
  }
  .keyword_analyze > div > div {
    width: 268px;
  }
  .data_title_div {
    width: 100%;
    background: none;
    margin-bottom: 8px;
  }
  .keyword_analyze_arrow {
    cursor: pointer;
    display: block;
    top: 50%;
    transform: translate(0%, -50%);
  }
  .keyword_analyze_arrow.left {
    left: 0;
    display: none;
  }
  .keyword_analyze_arrow.right {
    right: 0;
    display: none;
  }
  .analyze_section .search_data .title > div:last-of-type {
    display: none;
  }
  .type_select_button_box {
    border-radius: 8px;
    background: rgba(177, 184, 199, 0.3);
    gap: 0;
  }
  .select_chart_data.action {
    border-radius: 8px;
    border: 1px solid var(--blue);
    background: #fff;
    color: var(--blue);
    box-shadow: 0px 1px 4px 0px #c8d6f8;
    font-size: 14px;
  }
  .keyword_analyze > div:first-of-type {
    margin-bottom: 6px;
  }
  .select_chart_data.device {
    font-size: 10px;
  }
  .analyze_section .search_data {
    margin-bottom: 16px;
  }
  .analyze_section .search_data .title {
    width: 100%;
    margin-bottom: 10px;
  }
  .analyze_section .title > div {
    width: 100%;
    justify-content: space-between;
  }
  .analyze_section .search_data .title > div:nth-of-type(1) > div:nth-of-type(1) {
    width: 150px;
  }
  .search_data.base_block {
    border-radius: 12px;
    background: rgba(177, 184, 199, 0.15);
    padding: 12px;
  }
  .select_chart_data {
    padding: 8px;
    font-size: 14px;
  }
  .search_chart {
    height: 300px;
  }
  .select_chart_partition {
    display: none;
  }
  .select_chart_data > span:first-of-type {
    display: none;
  }
  .select_chart_data > span:last-of-type {
    display: block;
  }

  .category_data.base_block {
    border-radius: 12px;
    background: rgba(177, 184, 199, 0.15);
    overflow: hidden;
    padding: 20px;
  }
  .category_box {
    width: 300px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
  .category_data > div:last-of-type > div {
    width: max-content;
  }
  .category_1 {
    margin-right: 0px;
  }
  .category_1,
  .category_2 {
    display: inline-flex;
    gap: 0px;
  }
  .category_1 > div > div:first-of-type,
  .category_2 > div > div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .category_1 .base_block_inner,
  .category_2 .base_block_inner {
    background: none;
  }
  .category_1 > div,
  .category_2 > div {
    min-width: 300px;
    max-width: 300px;
    width: 100%;
    justify-content: flex-start;
    padding: 20px 0 0;
  }

  .naver_tap_title_button,
  .category_title_button {
    cursor: pointer;
    display: block;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 1px 2.5px 0px rgba(0, 0, 0, 0.15);
    padding: 6px 7px;
  }
  .chart {
    margin-top: 16px;
    padding: 20px 10px;
    background: #fff;
  }
  .category_chart {
    height: 240px;
    margin-top: 16px;
    background: #fff;
  }
  .naver_potion.base_block {
    padding: 20px;
    background: rgba(177, 184, 199, 0.15);
    overflow: hidden;
  }
  .position-box {
    width: 300px;
    overflow: hidden;
  }
  .naver-section-box {
    margin: 0 auto;
    width: 300px;
    overflow: hidden;
  }
  .naver_potion .base_block_inner {
    background: none;
    min-width: 300px;
    max-width: 300px;
  }
  .section_tap_content {
    gap: 0;
  }
  .section_tap_content > div {
    padding: 0;
  }
  .section_tap_content ul {
    padding: 6px;
    border-radius: 8px;
    background: #fff;
  }

  .section_tap_content .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
  }
  .keyword_section.base_block {
    margin: 0 auto;
    width: 340px;
    padding: 17px 12px;
  }
  .keyword_section .header > div:last-of-type {
    display: none;
  }
  .keyword_section .content.title {
    margin-left: 0px;
  }
  .keyword_section .content.title > div:nth-of-type(1),
  .keyword_section .content > div:nth-of-type(1) {
    position: sticky;
    left: 0px;
    /* border-right: 1px solid var(--black); */
  }
  .keyword_section .content > div:nth-of-type(1) {
    width: 120px;
    background: rgba(244, 245, 247, 1);
  }
  .keyword_section .content > div:nth-of-type(2) {
    width: 100px;
  }
  .keyword_section .body {
    padding-left: 0;
    overflow: scroll;
  }
  .keyword_section .body ul {
    overflow-y: visible;
    max-height: none;
  }

  .product_section.base_block {
    padding: 13px 12px 0;
    background: #fff;
  }
  .product_section .body {
    max-height: none;
    overflow: visible;
  }
  .product_section .body li {
    border-radius: 8px;
    border: 1px solid #b1b8c7;
    background: #fff;
    padding: 12px;
  }
  .product_section .product_card.pc {
    display: none;
  }
  .product_section .product_card.mo {
    display: block;
    min-width: 100%;
  }
  .mall_info_summery {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
  }
  .mall_info_summery .number {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 4px;
    margin-right: 6px;
    color: #fff;
  }
  .mall_info_summery .number.green {
    background: #03cf5d;
  }
  .mall_info_summery .number.blue {
    background: var(--blue);
  }
  .mall_info_summery .rank {
    color: #03cf5d;
    font-size: 12px;
    margin-right: 4px;
  }
  .mall_info_summery .mall {
    color: #34456d;
    font-size: 12px;
  }
  .product_category {
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--black60);
  }
  .product_info_summery {
    display: flex;
    font-size: 12px;
    font-weight: 600;
    gap: 8px;
  }
  .product_section .product_card .image {
    min-width: 84px;
    height: 84px;
  }
  .product_title {
    display: flex;
    margin-bottom: 8px;
    height: 56px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
  }
  .product_title > div:first-of-type {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .prdict_price {
    display: flex;
    font-size: 16px;
  }
  .prdict_price .price {
    color: var(--blue);
  }
  .prdict_price > div:first-of-type {
    min-width: 40px;
  }
  .option_summery {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(23, 43, 77, 0.8);
  }
  .product_section .product_card .month {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 10px;
  }
  .product_line {
    margin: 12px 0;
  }
  .analyze_section .title .naver_tap_title_button {
    display: flex;
    width: max-content;
  }
  .category_mo {
    display: block;
    background-color: #fff;
  }
  .category_pc {
    display: none;
  }

  .data_info_summary > div:nth-of-type(1) {
    border-radius: 2px;
    background: rgba(177, 184, 199, 0.15);
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
  }

  .up_arrow {
    position: sticky;
    bottom: -50px;
    left: 50%;
    background: #fff;
    animation: none;
    padding: 10px 0 20px;
    transition: bottom 0.5s; /* Smooth transition */
  }
  #device-chart,
  #gender-chart {
    margin-top: 16px;
  }

  .age_chart .grafs > div {
    height: 200px;
  }

  .category_percent {
    font-size: 10px;
  }
  .popular-keyword-box {
    flex-direction: column;
    gap: 20px;
  }
  .category_data .title > div {
    flex-direction: column;
    align-items: flex-start;
  }
  .data_info_summary > div:nth-of-type(2) {
    font-size: 16px;
  }
  .category_1 > div > div:first-of-type p,
  .category_2 > div > div:first-of-type p {
    display: none;
  }
  #SvgjsG1251 {
    display: none !important;
  }
  .analyze_section .sub-title {
    font-size: 14px;
  }
  .analyze_section .title > div > div {
    font-size: 18px;
  }
  .analyze_section .title > div.naver-position {
    justify-content: center;
  }
  .keyword_section .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .keyword_section .header .title {
    flex-direction: row;
    font-size: 18px;
  }
  .search-filter {
    padding: 12px;
  }
  .filter-select {
    font-size: 13px;
  }
  .search-word {
    max-width: 200px;
  }
  .keyword_section .body {
    padding: 4px 0;
  }
  .search_chart .apexcharts-xaxis {
    opacity: 0;
  }

  .seo-ai-title-box > div:first-of-type {
    align-items: flex-start;
  }
  .seo-ai-title-count {
    display: none;
  }
  .seo-ai-title-copy {
    display: none;
  }
  .seo-ai-title span {
    display: inline;
  }
  .product-summary-section {
    display: none;
  }
  .data_info_summary {
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  main {
    padding: 60px 0 30px;
  }
  .section.menu {
    margin: 20px 0 20px;
  }
  .menu > div {
    padding-bottom: 0px;
  }
  .search {
    margin-bottom: 30px;
  }
  .analyze_section {
    padding: 0px 4px;
  }
  .analyze_section .image {
    min-width: 83px;
    min-height: 83px;
  }

  .analyze_section .base_block {
    width: 100%;
    padding: 20px 10px;
  }
  .naver_potion.base_block {
    padding: 20px 10px;
  }
  .black_button {
    padding: 8px 8px;
    font-size: 12px;
  }
  .keyword_analyze {
    width: 200px;
  }
  .keyword_section.base_block {
    width: 280px;
    padding: 15px 5px;
  }
  .keyword_section .header .title {
    font-size: 16px;
  }
  .keyword_analyze > div > div {
    width: 200px;
  }
  .condition_info_summary .last_point {
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
  }
  .naver_potion .base_block_inner {
    width: 89vw;
  }
  .type_select_button_box {
    margin-left: 1vw;
  }
  .menu > div {
    width: 100%;
    font-size: 16px;
  }
  .menu > div > ul > li {
    font-size: 16px;
    padding: 12px;
  }
  .analyze_section .search_data .title > div:nth-of-type(1) > div:nth-of-type(1) {
    width: 135px;
  }
  .naver_potion .base_block_inner {
    width: 86vw;
  }
  .data_info_summary > div:nth-of-type(2) {
    font-size: 12px;
  }
  .analyze_section .sub-title {
    font-size: 14px;
  }

  .search_keyword {
    font-size: 5vw;
  }
  .category_box {
    width: 280px;
  }
  .category_1 > div,
  .category_2 > div {
    min-width: 280px;
    max-width: 280px;
    width: 100%;
    justify-content: flex-start;
    padding: 20px 0 0;
  }
  .naver-section-box {
    width: 280px;
  }
  .naver_potion .base_block_inner {
    min-width: 280px;
    max-width: 280px;
  }
  .seo-ai-title-section {
    padding: 15px 10px;
  }
  .seo-ai-title-section-more {
    display: none;
  }
  .seo-ai-title-box {
    padding: 11px 8px;
  }
  .seo-ai-title-count {
    display: none;
  }
  .seo-ai-title-box > div > ul li {
    padding: 2px 9px;
    font-size: 11px;
  }
}
