@charset "UTF-8";
/* comment.scss
-------------------------------------------------------------------------------------------------------- */
#xet-simple-board .simple-board__comment {
  margin: 32px 0;
  /* 전체 댓글 수 */
  /* 댓글 목록 */
}
#xet-simple-board .simple-board__comment .comment-count {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  font-size: 18px;
}
#xet-simple-board .simple-board__comment .comment-count em {
  margin-left: 4px;
  color: deeppink;
}
#xet-simple-board .simple-board__comment .comment-list {
  margin-bottom: 32px;
}
#xet-simple-board .simple-board__comment .comment-list .item {
  /* 댓글 내용 */
}
#xet-simple-board .simple-board__comment .comment-list .item + .item {
  padding-top: 24px;
}
#xet-simple-board .simple-board__comment .comment-list .item .indent {
  position: relative;
}
#xet-simple-board .simple-board__comment .comment-list .item .comment-list__content {
  padding-top: 16px;
}
#xet-simple-board .simple-board__comment .comment-list .item .comment-list__content .comment-list__content__header {
  position: relative;
  margin-bottom: 16px;
}
#xet-simple-board .simple-board__comment .comment-list .item .comment-list__content .comment-list__content__header .profileImage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 16px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}
#xet-simple-board .simple-board__comment .comment-list .item .comment-list__content .comment-list__content__header .profileImage img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
#xet-simple-board .simple-board__comment .comment-list .item .comment-list__content .comment-list__content__header .profileImage svg {
  fill: var(--text-baseColor);
}
#xet-simple-board .simple-board__comment .comment-list .item .comment-list__content .comment-list__content__header .comment-list__profile {
  display: flex;
  align-items: center;
  min-height: 40px;
  font-size: 12px;
}
#xet-simple-board .simple-board__comment .comment-list .item .comment-list__content .comment-list__content__body {
  padding-left: 64px;
  /* 댓글 삭제 기록이 남은 경우 */
}
#xet-simple-board .simple-board__comment .comment-list .item .comment-list__content .comment-list__content__body.deleted {
  color: var(--text-baseColor);
}
#xet-simple-board .simple-board__comment .comment-list .item.itemReply {
  /* 댓글 내용 */
}
#xet-simple-board .simple-board__comment .comment-list .item.itemReply .indent {
  padding-left: 16px;
}
#xet-simple-board .simple-board__comment .comment-list .item.itemReply .indent::before {
  content: "";
  z-index: 0;
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 35px;
  width: 1px;
  background-color: var(--border-color);
}
#xet-simple-board .simple-board__comment .comment-list .item.itemReply .comment-list__content .comment-list__content__header .profileImage {
  z-index: 3;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.25);
}
#xet-simple-board .simple-board__comment .comment-list .item.itemReply .comment-list__content .comment-list__content__header .comment-list__profile_parent {
  position: absolute;
  top: -22px;
  left: 3px;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 32px;
  font-size: 12px;
  color: var(--text-baseColor);
}
#xet-simple-board .simple-board__comment .comment-list .item.itemReply .comment-list__content .comment-list__content__header .comment-list__profile_parent .profileImage {
  width: 32px;
  height: 32px;
  box-shadow: none;
}
#xet-simple-board .simple-board__comment .comment-list .item.itemReply .comment-list__content .comment-list__content__body {
  padding-left: 48px;
}

/* responsive
-------------------------------------------------------------------------------------------------------- */