/* sub-title */
.sub-title-group {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px 0;
}

.sub-title {
  color: var(--colorPrimary);
  font-size: var(--fontSizeBase);
  font-weight: var(--fontWeightSemibold);
  line-height: var(--lineHeightSm);
}

/* sub-title */

/* title-group-content */
.title-group-content {
  width: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px 0;
}

.title-group-content .btn-group {
  display: flex;
}

/* title-group-content */

/* btn-group 영역 */
.btn-group {
  display: grid;
  gap: 8px 10px;
}

.btn-group .btn {
  width: auto;
}

.btn.secondary.cancel {
  border: 2px solid var(--colorGray300);
  color: var(--colorGray400);
  background-color: var(--colorWhite);
}

/* btn-group 영역 */

/* txt bold */
.txt-semiBold {
  font-weight: var(--fontWeightSemibold);
}

.txt-bold {
  font-weight: var(--fontWeightBold);
}

/* txt bold */

/* table 영역 */
.category {
  font-size: var(--fontSizeXs);
  font-weight: var(--fontWeightBold);
  line-height: var(--lineHeightXs);
}

.list-title {
  width: auto;
  display: grid;
  align-items: center;
  justify-content: flex-start;
  grid-template-columns: auto auto;
  gap: 0 10px;
}

.list-title p {
  width: auto;
  font-size: var(--fontSizeBase);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reg-date {
  font-size: var(--fontSizeXs);
  line-height: var(--lineHeightXs);
  color: var(--colorGray400);
}

.mo-table {
  display: none;
}

.search-group {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 40px 0 10px 0;
}

.total-list {
  font-size: var(--fontSizeBase);
  line-height: var(--lineHeightSm);
}

.table {
  width: auto;
}

.table table {
  width: 100%;
}

.table thead {
  border-bottom: 4px solid var(--colorPrimary);
}

.table thead tr {
  width: 100%;
  height: 50px;
  background-color: var(--colorPrimary100);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0 30px;
  padding: 0 40px;
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.table th {
  height: 100%;
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
  color: var(--colorWhite);
  font-weight: var(--fontWeightSemibold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.table tbody tr {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0 30px;
  padding: 14px 40px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--colorGray300);
  background-color: var(--colorWhite);
}

.table tbody tr:nth-child(2n) {
  background-color: var(--colorGray100);
}

.table td {
  height: 100%;
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.table td>p{
  text-align: left;
}

.table .list-title {
  width: 100%;
}

.table .list-title p {
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
}

.clickable-row{
  cursor: pointer;
}
/* table 영역 */

/* form 영역 */
.signup-box {
  width: 100%;
}

.signup-box ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 0;
}

.signup-box ul li {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 0;
}

.signup-box ul li > p {
  font-size: var(--fontSizeXs);
  line-height: var(--lineHeightXs);
}

.signup-box ul li .btn {
  width: auto;
}

.input-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 0;
}

.input-group .btn {
  width: auto;
}

.signup-input-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 0;
}

.signup-input-group .input-group {
  width: auto;
}

/* form 영역 */

/* page tab 영역 */
.page-tab-box {
  width: 100%;
  margin-top: 40px;
}

.page-tab-box ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.page-tab-box ul li {
  width: auto;
  height: 48px;
}

.page-tab-box ul li button,
.page-tab-box ul li a {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid var(--colorGray300);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fontSizeMd);
  line-height: var(--lineHeightBase);
  color: var(--colorGray400);
}

/* page tab 영역 */

/* support-detail 영역 */
.detail-group {
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 40px;
}

.detail-inner {
  width: 100%;
}

.detail-top {
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-top: 2px solid var(--colorBlack);
  border-bottom: 1px solid var(--colorGray300);
  gap: 6px 0;
}

.detail-title {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px 0;
}

.detail-title span {
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
}

.detail-title p {
  width: 100%;
  font-size: var(--fontSizeMd);
  line-height: var(--lineHeightBase);
  font-weight: var(--fontWeightSemibold);
  word-break: break-all;
}

.detail-info {
  display: flex;
  align-items: center;
  gap: 0 13px;
}

.detail-info p {
  font-size: var(--fontSizeXs);
  line-height: var(--lineHeightXs);
  color: var(--colorGray400);
  position: relative;
}

.detail-info p:not(:first-child):after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: var(--colorGray200);
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
}

.download-file {
  width: 100%;
  border-bottom: 1px solid var(--colorGray300);
  padding: 14px 40px;
  box-sizing: border-box;
}

.download-file a {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 6px;
}

.download-file span {
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
  color: var(--colorGray500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-content {
  width: 100%;
}

.detail-content-inner {
  width: 100%;
  padding: 30px 40px;
  box-sizing: border-box;
  color: var(--colorGray500);
  font-size: var(--fontSizeBase);
  line-height: var(--lineHeightSm);
  border-bottom: 1px solid var(--colorGray300);
}

.detail-btn-group {
  gap: 0 6px;
}

.detail-btn-group .btn.secondary {
  border: 2px solid var(--colorBlack);
  color: var(--colorBlack);
}

.detail-btn-group .btn.primary {
  background-color: var(--colorBlack);
  border: 2px solid var(--colorBlack);
}

/* support-detail 영역 */

/* guide box 영역 */
.guide-box {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--colorGray300);
}

.guide-box ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.guide-box ul li {
  width: 100%;
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
  display: flex;
  align-items: baseline;
  gap: 0 7px;
  color: var(--colorGray500);
}

/* guide box 영역 */

/* 표 영역 */
.history-group {
  width: 100%;
}

.request-history-box {
  width: 100%;
  border-top: 2px solid var(--colorBlack);
  border-bottom: 1px solid var(--colorGray300);
}

.request-history-box ul {
  width: 100%;
}

.request-history-box ul li {
  width: 100%;
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid var(--colorGray300);
}
.detail-history ul li:nth-child(4),
.refund-detail-history li:last-child {
  border-bottom: 0;
}
.history-title {
  width: auto;
  padding: 14px 20px;
  box-sizing: border-box;
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
  background-color: var(--colorGray100);
  display: flex;
  align-items: center;
  gap: 0 3px;
}

.history-title > span {
  color: var(--colorGray400);
}

.history-content {
  width: auto;
  padding: 14px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.history-content > span {
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
}

.history-content .input-label {
  width: 300px;
}

.history-content > p {
  font-size: var(--fontSizeSm);
  line-height: var(--lineHeightXs);
  color: var(--colorGray400);
}

.total-amount {
  font-size: var(--fontSize3Xl);
  font-weight: var(--fontWeightBold);
  line-height: var(--lineHeight2Xl);
  color: var(--colorPrimary);
}

.payment-method-area{
  padding: 2px;
  box-sizing: border-box;
}
/* 표 영역 */

/* list-none */
.list-none {
  width: 100%;
  height: 240px;
  border-bottom: 1px solid var(--colorGray300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fontSizeXs);
  color: var(--colorGray400);
}

/* list-none */





@media (hover: hover) and (pointer: fine) {
  .support-list ul li:hover .list-title p,
  .table .list-title:hover p{
    text-shadow: 0 0 0 currentColor;
    -webkit-text-stroke: 0.2px currentColor;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .download-file a:hover img {
    content: url(/images/support/downloadIcon-hover.svg);
  }

  .download-file a:hover span {
    color: var(--colorPrimary);
    text-shadow: 0 0 0 currentColor;
    -webkit-text-stroke: 0.2px currentColor;
  }
}





/* responsive css */
@media screen and (min-width: 768px) and (max-width: 1279px) {
  /* title-group-content */
  .title-group-content {
    align-items: center;
  }

  .title-group-content .btn-group {
    width: 100%;
  }

  /* title-group-content */

  /* btn-group 영역 */
  .btn-group {
    gap: 6px 10px;
  }

  /* btn-group */

  .search-group {
    margin: 30px 0 10px 0;
  }
  .table thead tr {
    padding: 14px 30px;
    gap: 0 20px;
    min-height: 52px;
    height: auto;
  }
  .table tbody tr {
    padding: 14px 30px;
    gap: 0 20px;
  }
  .page-tab-box {
    margin: 30px 0 10px;
  }
  .page-tab-box ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .detail-group {
    margin-top: 30px;
  }
  .history-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px 0;
  }
  .total-amount {
    font-size: var(--fontSizeXl);
    line-height: var(--lineHeightLg);
  }
  .table td>p {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  /* table 영역 */
  .list-title p {
    font-weight: var(--fontWeightSemibold);
  }

  /* table 영역 */

  /* sub-title */
  .sub-title-group {
    gap: 6px 0;
  }

  .sub-title {
    font-size: var(--fontSizeSm);
    line-height: var(--lineHeightXs);
  }

  /* sub-title */

  /* title-group-content */
  .title-group-content {
    gap: 20px 0;
  }

  .title-group-content .btn-group {
    width: 100%;
    display: grid;
  }

  .title-group-content > .btn {
    width: 100%;
  }

  /* title-group-content */

  /* btn-group 영역 */
  .btn-group {
    width: 100%;
    gap: 6px 10px;
  }
  .btn-group .btn {
    width: 100%;
  }

  /* btn-group 영역 */

  .table-group {
    display: none;
  }
  .mo-table {
    display: block;
    border-top: 2px solid var(--colorGray600);
  }
  .mo-table > ul {
    width: 100%;
  }
  .mo-table > ul > li{
    width: 100%;
  }
  .mo-table > ul > li a {
    width: 100%;
  }
  .mo-table > ul > li {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid var(--colorGray300);
    padding: 14px 15px;
    box-sizing: border-box;
    gap: 0 20px;
  }
  .mo-table > ul > li:nth-child(even) {
    background-color: var(--colorGray100);
  }
  .service-ip-box {
    color: var(--colorGray400);
    font-size: var(--fontSizeXs);
  }
  .service-ip-box p {
    line-height: var(--lineHeightXs);
  }
  .table-title-txt-group {
    display: flex;
    flex-direction: column;
    gap: 6px 0;
    font-size: var(--fontSizeXs);
  }
  .table-title-txt {
    font-size: var(--fontSizeBase);
    font-weight: var(--fontWeightSemibold);
    line-height: var(--lineHeightSm);
  }
  .table-order-num,
  .table-ip-num,
  .table-title-txt-group .txt-dark-muted {
    line-height: var(--lineHeightXs);
  }
  .admin-group ul {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    color: var(--colorGray400);
    font-size: var(--fontSizeXs);
    line-height: var(--lineHeightXs);
  }
  .admin-group ul li:not(:first-child)::before {
    content: "|";
    color: var(--colorGray300);
    margin: 0 6px;
  }
  .table-amount-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px 0;
    font-size: var(--fontSizeSm);
  }
  .table-amount-area p {
    line-height: var(--lineHeightXs);
  }
  .search-group {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px 0;
    margin: 20px 0 10px 0;
  }

  .total-list {
    font-size: var(--fontSizeSm);
    line-height: var(--lineHeightXs);
  }

  .page-tab-box {
    margin: 20px 0 10px 0;
  }
  .page-tab-box ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
  }
  .page-tab-box ul li button,
  .page-tab-box ul li a {
    font-size: var(--fontSizeBase);
    line-height: var(--lineHeightSm);
  }
  .total-amount {
    font-size: var(--fontSizeXl);
    line-height: var(--lineHeightLg);
  }
  .guide-box {
    padding: 15px;
  }
  .detail-group {
    gap: 30px 0;
    margin-top: 20px;
  }
  .detail-top {
    padding: 20px 15px;
  }
  .detail-content-inner {
    padding: 30px 15px;
  }
  .download-file {
    padding: 14px 15px;
  }

  .support-title-txt {
    display: grid;
    align-items: center;
    justify-content: flex-start;
    grid-template-columns: auto auto;
    gap: 0 6px;
    width: 100%;
  }

  .support-title-txt span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: var(--fontWeightSemibold);
  }
  .title-group-content .title-group .desc br{
    display: none;
  }
  .table thead tr {
    gap: 0 10px;
    padding: 0 20px;
  }
  .table tbody tr {
    gap: 0 10px;
    padding: 14px 20px;
  }
  .detail-title span {
    font-size: var(--fontSizeXs);
  }
  .detail-btn-group {
    gap: 0 6px;
  }
}
