<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*─────────── Common ───────────*/
/*───────────// Common ───────────*/
.nx-post {
  /*─────────── Tab ───────────*/
  /*───────────// Tab ───────────*/
  /*─────────── Header ───────────*/
  /*───────────// Header ───────────*/
  /*─────────── Search ───────────*/
  /*───────────// Search ───────────*/
  /*─────────── No List ───────────*/
  /*───────────// No List ───────────*/
}
.nx-post__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60rem;
  font-size: 17rem;
  font-weight: 600;
  color: #888;
  text-align: center;
  transition: color 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post__tab {
    font-size: 15.4545454545rem;
  }
}
@media (min-width: 1025px) {
  .nx-post__tab:hover {
    color: var(--primary-color);
  }
}
@media (max-width: 800px) {
  .nx-post__tab {
    min-height: 50rem;
  }
}
.nx-post__tab-list {
  display: flex;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post__tab-list {
    flex-wrap: wrap;
  }
}
.nx-post__tab-item {
  flex: 1 0 0;
  position: relative;
  border: solid #e5e5e5;
  border-width: 2px 0;
  /* Media Query */
}
.nx-post__tab-item.active {
  border-color: var(--primary-color);
  z-index: 10;
}
.nx-post__tab-item.active .nx-post__tab {
  color: var(--primary-color);
}
@media (max-width: 800px) {
  .nx-post__tab-item {
    flex: 1 1 auto;
    width: 25%;
  }
  .nx-post__tab-item:nth-child(4)::after {
    display: none;
  }
  .nx-post__tab-item:nth-child(n+5) {
    margin-top: -2px;
  }
}
.nx-post__tab-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 40%;
  max-height: 12rem;
  background-color: #e5e5e5;
  transform: translateY(-50%);
}
.nx-post__header:not(:first-child) {
  margin-top: 60rem;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post__header:not(:first-child) {
    margin-top: 40rem;
  }
}
.nx-post__header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30rem 40rem;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post__header-wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.nx-post__info {
  display: flex;
  align-items: center;
  font-size: 15rem;
}
@media (max-width: 800px) {
  .nx-post__info {
    font-size: 13.6363636364rem;
  }
}
.nx-post__info-total {
  display: inline-block;
  margin: 0 5rem;
}
.nx-post__search {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180rem;
  padding: 30rem 40rem;
  background-color: #fafafa;
  /* Media Query */
}
.nx-post__search:not(:first-child) {
  margin-top: 50rem;
  /* Media Query */
}
@media (max-width: 1024px) {
  .nx-post__search:not(:first-child) {
    margin-top: 30rem;
  }
}
@media (max-width: 800px) {
  .nx-post__search {
    min-height: 1px;
    padding: 30rem 20rem;
  }
}
.nx-post__search form {
  display: block;
  width: 100%;
}
.nx-post__search-wrap {
  display: flex;
  width: 100%;
  max-width: 520rem;
  height: 60rem;
  padding: 10rem;
  margin: 0 auto;
  border: 1px solid #e5e5e5;
  border-radius: 30rem;
  background-color: #fff;
  /* Media Query */
}
@media (max-width: 540px) {
  .nx-post__search-wrap {
    flex-wrap: wrap;
    gap: 10rem 0;
    max-width: none;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
  }
}
.nx-post__search-btn {
  flex-shrink: 0;
  min-width: 80rem;
  padding: 5rem;
  font-size: 15rem;
  font-weight: 500;
  color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 20rem;
  background-color: var(--primary-color);
  transition-property: color, background-color;
  transition-duration: 0.3s;
  /* Media Query */
}
@media (min-width: 1025px) {
  .nx-post__search-btn:hover {
    color: var(--primary-color);
    background-color: transparent;
  }
}
.nx-post__search-form {
  padding: 60rem 0 40rem;
  text-align: center;
}
.nx-post__search-title {
  font-size: 18rem;
}
.nx-post__search-text {
  font-weight: 600;
  color: var(--primary-color);
}
.nx-post__search-num {
  font-weight: 600;
  color: var(--primary-color);
}
.nx-post__search-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 10rem;
  min-width: 100rem;
  height: 50rem;
  padding: 0 10rem;
  margin: 40rem auto 0;
  font-size: 16rem;
  font-weight: 500;
  color: #fff;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  transition-property: color, background-color;
  transition-duration: 0.3s;
  /* Media Query */
}
@media (min-width: 1025px) {
  .nx-post__search-reset:focus, .nx-post__search-reset:hover {
    color: var(--primary-color);
    background-color: transparent;
  }
}
.nx-post__search-icon {
  transform: translateY(-1rem);
}
.nx-post__select-wrap {
  flex-shrink: 0;
  width: 130rem;
  /* Media Query */
}
@media (max-width: 540px) {
  .nx-post__select-wrap {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 30rem;
    background-color: #fff;
  }
}
.nx-post__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 40%;
  max-height: 12rem;
  background-color: #e5e5e5;
  transform: translateY(-50%);
}
.nx-post__select-wrap .custom-select__btn {
  padding: 0 15rem 0 20rem;
  border-radius: inherit;
  /* Media Query */
}
@media (max-width: 540px) {
  .nx-post__select-wrap .custom-select__btn {
    position: relative;
    height: 50rem;
    background-color: #fff;
    z-index: 15;
  }
}
.nx-post__select-wrap .custom-select__btn::after {
  content: "\e942";
}
.nx-post__select-wrap .custom-select__list {
  top: calc(100% + 10rem);
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post__select-wrap .custom-select__list {
    top: calc(100% - 25rem);
    padding-top: 40rem;
  }
  .nx-post__select-wrap .custom-select__list::after {
    content: "";
    position: absolute;
    top: 25rem;
    left: 50%;
    width: 90%;
    height: 1px;
    background-color: #e5e5e5;
    transform: translateX(-50%);
  }
}
.nx-post__input {
  width: 100%;
  height: 100%;
  padding: 0 20rem;
  font-size: 15rem;
  border: 0;
  border-right: 0;
}
@media (max-width: 800px) {
  .nx-post__input {
    font-size: 13.6363636364rem;
  }
}
.nx-post__input-wrap {
  display: flex;
  width: 100%;
  /* Media Query */
}
@media (max-width: 540px) {
  .nx-post__input-wrap {
    width: 100%;
    height: 50rem;
    overflow: hidden;
    padding: 5rem;
    border: 1px solid #e5e5e5;
    border-radius: 30rem;
    background-color: #fff;
  }
}
.nx-post__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10rem;
  min-height: 300rem;
  margin-top: 40rem;
  font-size: 18rem;
  text-align: center;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post__empty {
    font-size: 16.3636363636rem;
  }
}
@media (max-width: 640px) {
  .nx-post__empty {
    border-top: 2px solid #222;
    border-bottom: 1px solid #e5e5e5;
  }
}

/*─────────── Thumbnail ───────────*/
.thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.thumb__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/*───────────// Thumbnail ───────────*/
/*─────────── Paging ───────────*/
.paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5rem;
  margin-top: 90rem;
  /* Media Query */
}
@media (max-width: 1024px) {
  .paging {
    margin-top: 60rem;
  }
}
.paging .paging__current, .paging .paging__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
  padding-top: 3px;
  border-radius: 50%;
  font-size: 15rem;
  /* Media Query */
}
@media (max-width: 800px) {
  .paging .paging__current, .paging .paging__link {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 640px) {
  .paging .paging__current, .paging .paging__link {
    width: 35rem;
    height: 35rem;
  }
}
.paging__link {
  transition: color 0.3s;
  /* Media Query */
}
.paging__link.disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: #999;
}
@media (min-width: 1025px) {
  .paging__link:not(.disabled):hover {
    color: var(--primary-color);
  }
}
.paging__current {
  color: #fff;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.paging__icon::before {
  display: inline-block;
  font-family: xeicon !important;
  font-style: normal;
  line-height: 1;
  font-variant: normal;
  text-transform: none;
  speek: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paging__icon.ic-first::before {
  content: "\ea47";
}
.paging__icon.ic-prev::before {
  content: "\ea3e";
  rotate: 180deg;
  transform: translateY(-1px);
  /* Media Query */
}
@media (max-width: 1024px) {
  .paging__icon.ic-prev::before {
    transform: translateY(1px);
  }
}
@media (max-width: 640px) {
  .paging__icon.ic-prev::before {
    transform: translateY(0);
  }
}
.paging__icon.ic-next::before {
  content: "\ea3e";
}
.paging__icon.ic-last::before {
  content: "\ea48";
}

/*───────────// Paging ───────────*/
/*─────────── View ───────────*/
.nx-post-view__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20rem 40rem;
}
.nx-post-view__header-title {
  font-size: 30rem;
}
@media (max-width: 800px) {
  .nx-post-view__header-title {
    font-size: 27.2727272727rem;
  }
}
.nx-post-view__header-btn {
  max-width: 180rem;
  min-height: 50rem;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-view__header-btn {
    max-width: 150rem;
    padding: 10rem 15rem;
  }
}
.nx-post-view__header + .nx-post-view__content {
  margin-top: 35rem;
}
.nx-post-view__info {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 40rem;
  margin-top: 20rem;
}
.nx-post-view__info-item {
  display: flex;
  gap: 0 10rem;
}
.nx-post-view__info-title {
  flex-shrink: 0;
  font-size: 15rem;
  color: #666;
}
.nx-post-view__info-text {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 0 5rem;
  font-size: 15rem;
  color: #888;
}
.nx-post-view__info-icon {
  transform: translateY(-1rem);
}
.nx-post-view__files:not(:first-child) {
  margin-top: 20rem;
}
.nx-post-view__files-container {
  padding: 30rem;
  margin-top: 40rem;
  background-color: #f8f8f8;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__files-container {
    padding: 20rem;
  }
}
.nx-post-view__files-container + .nx-post-view__files-container {
  margin-top: 15rem;
}
.nx-post-view__files-title {
  display: flex;
  align-items: center;
  gap: 0 5rem;
}
.nx-post-view__files-item {
  display: flex;
  align-items: center;
  gap: 0 5rem;
  width: 100%;
  min-width: 1px;
  font-size: 15rem;
}
.nx-post-view__files-item + .nx-post-view__files-item {
  margin-top: 5rem;
}
.nx-post-view__files-icon {
  flex-shrink: 0;
}
.nx-post-view__files-icon:first-child {
  margin-right: 5rem;
}
.nx-post-view__files-link {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-width: 1px;
  color: #555;
  transition: color 0.3s;
  /* Media Query */
}
@media (min-width: 1025px) {
  .nx-post-view__files-link:focus, .nx-post-view__files-link:hover {
    color: #222;
  }
  .nx-post-view__files-link:focus .nx-post-view__files-download, .nx-post-view__files-link:hover .nx-post-view__files-download {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
  }
}
.nx-post-view__files-name {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  word-wrap: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nx-post-view__files-ext {
  flex-shrink: 0;
}
.nx-post-view__files-size {
  flex-shrink: 0;
  margin-left: 5rem;
  font-size: 13rem;
  color: #999;
}
.nx-post-view__files-download {
  display: flex;
  flex-shrink: 0;
  align-self: center;
  align-items: center;
  gap: 0 5rem;
  min-height: 28rem;
  padding: 3rem 10rem;
  margin-left: 10rem;
  border: 1px solid #e5e5e5;
  border-radius: 30rem;
  background-color: #fff;
  font-size: 12rem;
  font-weight: 600;
  transition-property: color, border-color, background-color;
  transition-duration: 0.3s;
}
.nx-post-view__contents {
  min-height: 500rem;
  padding: 30rem;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__contents {
    min-height: 300rem;
    padding: 30rem 20rem;
  }
}
.nx-post-view__slider {
  margin-top: 35rem;
}
.nx-post-view__slider.slick-dotted {
  margin-bottom: 0;
  padding-bottom: 50rem;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-view__slider.slick-dotted {
    padding-bottom: 30rem;
  }
}
.nx-post-view__slider .slick-arrow {
  width: 30rem;
  height: 60rem;
  border-radius: 0;
  background-color: transparent;
  /* Media Query */
}
@media (min-width: 1025px) {
  .nx-post-view__slider .slick-arrow:hover::before {
    color: var(--primary-color);
  }
}
.nx-post-view__slider .slick-arrow::before {
  font-size: 50rem;
  color: #ccc;
}
@media (max-width: 800px) {
  .nx-post-view__slider .slick-arrow::before {
    font-size: 45.4545454545rem;
  }
}
.nx-post-view__slider .slick-prev {
  left: -85rem;
}
.nx-post-view__slider .slick-next {
  right: -85rem;
}
.nx-post-view__slider .slick-dots {
  bottom: 0;
}
.nx-post-view__slider .slick-dots li.slick-active button::before {
  border-color: var(--primary-color);
}
.nx-post-view__slider .slick-dots li button::before {
  opacity: 1;
  border-color: #ddd;
}
.nx-post-view__slider-img {
  max-width: 100%;
}
.nx-post-view__content + .nx-post-view__content {
  margin-top: 90rem;
  /* Media Query */
}
@media (max-width: 1024px) {
  .nx-post-view__content + .nx-post-view__content {
    margin-top: 60rem;
  }
}
.nx-post-view__slider + .nx-post-view__content {
  margin-top: 35rem;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-view__slider + .nx-post-view__content {
    margin-top: 25rem;
  }
}

.nx-post-view__content-title {
  position: relative;
  padding-left: 15rem;
  font-size: 24rem;
}
@media (max-width: 800px) {
  .nx-post-view__content-title {
    font-size: 21.8181818182rem;
  }
}
.nx-post-view__content-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5rem;
  height: 16rem;
  background: linear-gradient(#b2d1ff 50%, var(--primary-color) 50%);
  transform: translateY(-50%);
}
.nx-post-view__content-inner {
  padding: 45rem 20rem;
  margin-top: 25rem;
  font-size: 17rem;
  color: #888;
  border: solid #e5e5e5;
  border-width: 1px 0;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-view__content-inner {
    font-size: 15.4545454545rem;
  }
}
.nx-post-view__content-inner.table-content {
  padding: 0;
  border: 0;
  font-size: inherit;
  color: inherit;
}
@media (max-width: 800px) {
  .nx-post-view__content-inner {
    padding: 30rem 15rem;
    margin-top: 15rem;
  }
}
.nx-post-view__content table {
  width: 100% !important;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__content table {
    border-top: 1px solid #222;
  }
}
.nx-post-view__content table th,
.nx-post-view__content table td {
  padding: 20rem;
  text-align: center;
  vertical-align: middle;
  /* Media Query */
}
.nx-post-view__content table th:not(:last-child),
.nx-post-view__content table td:not(:last-child) {
  border-right: 1px solid #e5e5e5;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__content table th:not(:last-child),
  .nx-post-view__content table td:not(:last-child) {
    text-align: left;
    border-right: 0;
  }
}
@media (max-width: 640px) {
  .nx-post-view__content table th,
  .nx-post-view__content table td {
    padding: 0 15rem;
  }
}
.nx-post-view__content table thead {
  /* Media Query */
}
.nx-post-view__content table thead th {
  font-size: 18rem;
  font-weight: 600;
  border: solid #222;
  border-width: 1px 0;
}
@media (max-width: 800px) {
  .nx-post-view__content table thead th {
    font-size: 16.3636363636rem;
  }
}
@media (max-width: 640px) {
  .nx-post-view__content table thead {
    display: none;
  }
}
.nx-post-view__content table tbody tr {
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__content table tbody tr {
    border-bottom: 1px solid #e5e5e5;
  }
}
.nx-post-view__content table tbody td {
  font-size: 17rem;
  color: #555;
  border-bottom: 1px solid #e5e5e5;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-view__content table tbody td {
    font-size: 15.4545454545rem;
  }
}
@media (max-width: 640px) {
  .nx-post-view__content table tbody td {
    float: left;
    border-bottom: 0;
  }
  .nx-post-view__content table tbody td::before {
    display: inline-block;
    margin-right: 5rem;
    color: #222;
    font-size: inherit;
  }
}
.nx-post-view__content table tbody td:first-child {
  width: 22.5352112676%;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__content table tbody td:first-child {
    width: 100%;
    padding-top: 20rem;
    font-size: 18rem;
    font-weight: 600;
    color: #222;
  }
  .nx-post-view__content table tbody td:first-child::before {
    content: "제품명 :";
  }
}
.nx-post-view__content table tbody td:nth-child(2) {
  width: 19.7183098592%;
  /* Media Query */
}
.nx-post-view__content table tbody td:nth-child(2):not(:has(img))::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  padding-top: 60%;
  border: 1px solid #888;
  background: url("/uploads/media/2024/02/logo.svg") no-repeat #f8f8f8 center center/60% auto;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .nx-post-view__content table tbody td:nth-child(2) {
    width: 100%;
    margin: 15rem 0 15rem;
  }
}
.nx-post-view__content table tbody td:nth-child(3) {
  width: 36.6197183099%;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__content table tbody td:nth-child(3) {
    width: auto;
    padding-bottom: 20rem;
  }
  .nx-post-view__content table tbody td:nth-child(3)::before {
    content: "사이즈 :";
  }
}
.nx-post-view__content table tbody td:last-child {
  width: 21.1267605634%;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__content table tbody td:last-child {
    width: auto;
    padding-bottom: 20rem;
  }
  .nx-post-view__content table tbody td:last-child::before {
    content: "수량 :";
  }
}
.nx-post-view__content table tbody td img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  border: 1px solid #e5e5e5;
}
.nx-post-view__inner-title {
  display: block;
  margin-bottom: 20rem;
  font-size: 20rem;
  font-weight: 600;
  color: #222;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-view__inner-title {
    font-size: 18.1818181818rem;
  }
}
@media (max-width: 800px) {
  .nx-post-view__inner-title {
    margin-bottom: 15rem;
  }
}
.nx-post-view__footer-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 10rem;
  max-width: 200rem;
  height: 60rem;
  padding: 0 30rem;
  margin: 80rem auto 0;
  font-size: 16rem;
  font-weight: 500;
  color: #666;
  border: 1px solid #e5e5e5;
  transition-property: color, border-color, background-color;
  transition-duration: 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-view__footer-btn {
    font-size: 14.5454545455rem;
  }
}
@media (min-width: 1025px) {
  .nx-post-view__footer-btn:focus, .nx-post-view__footer-btn:hover {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
  }
}
@media (max-width: 1024px) {
  .nx-post-view__footer-btn {
    margin-top: 60rem;
  }
}
.nx-post-view__related {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.nx-post-view__related-wrap {
  display: flex;
  align-items: center;
  min-height: 60rem;
  padding: 0 30rem;
  /* Media Query */
}
.nx-post-view__related-wrap.disabled {
  opacity: 0.4;
}
.nx-post-view__related-wrap:not(:first-child) {
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 640px) {
  .nx-post-view__related-wrap {
    min-height: 50rem;
    padding: 0 20rem;
  }
}
.nx-post-view__related-title {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0 20rem;
  position: relative;
  font-size: 15rem;
  color: #444;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__related-title {
    gap: 0 10rem;
  }
}
.nx-post-view__related-title::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  font-family: xeicon !important;
  font-style: normal;
  color: #999;
  line-height: 1;
  font-variant: normal;
  text-transform: none;
  speek: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateY(-1px);
}
.prev .nx-post-view__related-title::before {
  content: "\e930";
}

.next .nx-post-view__related-title::before {
  content: "\e936";
}

.nx-post-view__related-title::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15rem;
  background-color: #e5e5e5;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-view__related-title::after {
    margin-left: 10rem;
  }
}
.nx-post-view__related-text {
  display: block;
  width: 100%;
  min-width: 1px;
  overflow: hidden;
  margin-left: 20rem;
  font-size: 15rem;
  color: #999;
  word-wrap: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.3s;
}
.nx-post-view__related-text[href]:focus, .nx-post-view__related-text[href]:hover {
  color: #444;
}

/*───────────// View ───────────*/
.nx-post-faq .nx-post__contents {
  margin-top: 30rem;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-faq .nx-post__contents {
    margin-top: 15rem;
  }
}
.nx-post-faq .nx-post__list {
  /* Media Query */
  border-top: 1px solid #222;
}
@media (max-width: 640px) {
  .nx-post-faq .nx-post__list {
    border-top: none;
  }
}
.nx-post-faq .nx-post__item {
  position: relative;
  /* Media Query */
}
@media (min-width: 1025px) {
  .nx-post-faq .nx-post__item:not(.open):focus::before, .nx-post-faq .nx-post__item:not(.open):hover::before {
    transform-origin: left bottom;
    transform: scaleX(1);
  }
}
.nx-post-faq .nx-post__item.open .nx-post__link::before {
  background-color: var(--primary-color);
  /* Media Query */
}
@media (max-width: 540px) {
  .nx-post-faq .nx-post__item.open .nx-post__link::before {
    color: var(--primary-color);
    background-color: transparent;
  }
}
.nx-post-faq .nx-post__item.open .nx-post__link::after {
  rotate: 180deg;
}
.nx-post-faq .nx-post__item.open .nx-post__title {
  color: var(--primary-color);
}
.nx-post-faq .nx-post__item::after, .nx-post-faq .nx-post__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: transform 0.5s;
}

.nx-post-faq .nx-post__item::before {
  background-color: var(--primary-color);
  transform-origin: right bottom;
  transform: scaleX(0);
  z-index: 10;
}
.nx-post-faq .nx-post__item::after {
  background-color: #e5e5e5;
  transition-property: visibility, opacity;
  transition-duration: 0.3s;
}
.nx-post-faq .nx-post__link {
  display: flex;
  align-items: flex-start;
  gap: 0 20rem;
  min-height: 70rem;
  padding: 25rem 30rem;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-post-faq .nx-post__link {
    padding: 20rem 15rem;
  }
}
.nx-post-faq .nx-post__link::before {
  content: "Q";
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 50rem;
  height: 50rem;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 24rem;
  color: #fff;
  line-height: 1.1;
  border-radius: 50%;
  background-color: #ddd;
  transition: background-color 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-faq .nx-post__link::before {
    font-size: 21.8181818182rem;
  }
}
@media (max-width: 540px) {
  .nx-post-faq .nx-post__link::before {
    content: "Q.";
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    color: #ddd;
    line-height: 1.5;
  }
}
.nx-post-faq .nx-post__link::after {
  content: "\e941";
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  top: 40rem;
  margin-left: auto;
  font-family: xeicon !important;
  font-style: normal;
  font-size: 24rem;
  color: #aaa;
  line-height: 1;
  font-variant: normal;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  translate: 0 -100%;
  transform-origin: 50% calc(50% - 2rem);
  transition-property: border, rotate;
  transition-duration: 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-faq .nx-post__link::after {
    font-size: 21.8181818182rem;
  }
}
@media (max-width: 540px) {
  .nx-post-faq .nx-post__link::after {
    top: 27rem;
  }
}
.nx-post-faq .nx-post__title {
  align-self: center;
  font-size: 18rem;
  font-weight: 500;
  transition: color 0.3s;
}
@media (max-width: 800px) {
  .nx-post-faq .nx-post__title {
    font-size: 16.3636363636rem;
  }
}
.nx-post-faq .nx-post__box {
  display: none;
}
.nx-post-faq .nx-post__inner {
  display: flex;
  align-items: flex-start;
  gap: 20rem;
  padding: 35rem 30rem;
  font-size: 16rem;
  color: #555;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-faq .nx-post__inner {
    font-size: 14.5454545455rem;
  }
}
@media (max-width: 640px) {
  .nx-post-faq .nx-post__inner {
    padding: 25rem 20rem;
  }
}
.nx-post-faq .nx-post__inner::before {
  content: "A";
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 50rem;
  height: 50rem;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 24rem;
  color: #ddd;
  line-height: 1.1;
  border-radius: 50%;
  background-color: #fff;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-post-faq .nx-post__inner::before {
    font-size: 21.8181818182rem;
  }
}
@media (max-width: 540px) {
  .nx-post-faq .nx-post__inner::before {
    content: "A.";
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    color: #888;
    line-height: 1.5;
  }
}
.nx-post-faq .nx-post__inner-text {
  align-self: center;
  padding: 3rem 0;
}</pre></body></html>