@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
  font-family: "Pretendard Variable", sans-serif;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

.authenticated {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  width: 100vw;
  height: 100vh;
}
.authenticated__main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
}
.authenticated__main-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 56.25vh;
  height: 100vh;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}
.authenticated__main-item:not(.authenticated__main-item:has(iframe)) {
  display: none;
}
.authenticated__main-item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 48px;
  padding: 0 14px 2px;
  background-color: #FAFAFA;
  border-bottom: 1px solid #DDD;
}
.authenticated__main-item-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-top: 1px;
}
.authenticated__main-item-header-text-name {
  color: #555;
  font-size: 13px;
  font-weight: 600;
}
.authenticated__main-item-header-text-memo {
  color: #777;
  font-size: 10px;
  cursor: pointer;
}
.authenticated__main-item-header-text-memo:empty:before {
  content: "여기를 눌러 메모를 수정할 수 있습니다.";
}
.authenticated__main-item-header-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  border: 0 none;
  outline: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.authenticated__main-item iframe {
  flex: 1;
  border: 0 none;
}
.authenticated__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  flex-shrink: 0;
  width: 320px;
  padding: 16px;
  background-color: #FAFAFA;
  border-left: 1px solid #DDD;
}
.authenticated__aside-auth {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}
.authenticated__aside-auth-user-name {
  font-size: 15px;
  font-weight: 600;
}
.authenticated__aside-auth-email-address {
  color: #555;
  font-size: 13px;
}
.authenticated__aside-accounts {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 5px;
}
.authenticated__aside-accounts-item {
  display: flex;
  align-items: flex-end;
  padding: 8px 12px;
  cursor: pointer;
}
.authenticated__aside-accounts-item-nick-name {
  font-size: 14px;
  font-weight: 500;
}
.authenticated__aside-accounts-item-handle {
  color: #555;
  font-size: 12px;
  font-weight: 400;
}

.create-user {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.create-user:not(.create-user--active) {
  display: none !important;
}
.create-user__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3333333333);
}
.create-user__modal {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 400px;
  background-color: #FFF;
}
.create-user__modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 14px;
}
.create-user__modal-header-title {
  font-size: 15px;
  font-weight: 600;
}
.create-user__modal-header-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  border: 0 none;
  outline: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.create-user__modal-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  height: 560px;
  padding: 14px;
  overflow: auto;
}
.create-user__modal-body label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.create-user__modal-body label > span {
  font-size: 13px;
  font-weight: 600;
}
.create-user__modal-body label > input, .create-user__modal-body label > textarea, .create-user__modal-body label > select {
  width: 100%;
  padding: 6px 8px;
  resize: none;
  font-size: 14px;
}
.create-user__modal-body > input {
  width: 100%;
  margin: 4px 0 0;
  padding: 12px 0;
  cursor: pointer;
}

.inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.inner__wrapper {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.inner__tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 48px;
  border-top: 1px solid #DDD;
}
.inner__tabs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  border-right: 1px solid #DDD;
  color: #777;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.inner__tabs-item:last-child {
  border-right: 0 none;
}
.inner__tabs-item--active {
  color: #333;
  font-weight: 700;
}

.post-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
}
.post-list__wrapper {
  width: 100%;
  height: calc(100% - 48px);
  overflow: auto;
}
.post-list__toolbar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-around;
  gap: 2px;
  flex-shrink: 0;
  height: 48px;
  padding: 2px;
  border-top: 1px solid #DDD;
}
.post-list__toolbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background-color: transparent;
  border: 0 none;
  outline: none;
  cursor: pointer;
  color: #777;
  font-size: 16px;
  font-weight: 500;
}

.post-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border-bottom: 1px solid #DDD;
}
.post-item:last-child {
  border-bottom: 0 none;
}
.post-item__link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.post-item__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.post-item__header-avatar {
  width: 24px;
  height: 24px;
  overflow: hidden;
}
.post-item__header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-item__header-avatar img:not(.post-item__header-avatar img[src^=https]) {
  display: none;
}
.post-item__header-text b {
  color: #333;
  font-size: 13px;
  font-weight: 600;
}
.post-item__header-text span {
  color: #777;
  font-size: 11px;
}
.post-item__tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.post-item__tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  background-color: #EEE;
  color: #333;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}
.post-item__tags:empty {
  display: none;
}
.post-item__content {
  display: flex;
  flex-direction: column;
}
.post-item__content p {
  margin: 0;
  padding: 0;
  min-height: 20px;
  color: #555;
  font-size: 13px;
  line-height: 20px;
}
.post-item__content:empty {
  display: none;
}
.post-item__images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.post-item__images img {
  width: calc((100% - 16px) / 3);
  aspect-ratio: 1;
  object-fit: cover;
}
.post-item__poll:empty {
  display: none;
}
.post-item__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.post-item__meta-item {
  color: #777;
  font-size: 12px;
}
.post-item__meta-separator {
  flex: 1;
}
.post-item__toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.post-item__toolbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 4px;
  cursor: pointer;
  color: #333;
  font-size: 11px;
}
.post-item__toolbar-item--active {
  filter: invert(1);
}

.post-read {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.post-read__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #DDD;
}
.post-read__header-back {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.post-read__comments {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.post-read__comments-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}
.post-read__comments-header span {
  margin-left: 4px;
  color: #333;
  font-weight: 600;
}
.post-read__comments-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.poll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 12px;
  background-color: #F5F5F5;
}
.poll__title {
  color: #333;
  font-size: 13px;
  font-weight: 600;
}
.poll__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
}
.poll__list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 32px;
  padding: 0 10px;
  background-color: #FFF;
}
.poll__list-item-title {
  color: #333;
  font-size: 13px;
  font-weight: 500;
}
.poll__list-item-count {
  color: #777;
  font-size: 12px;
}
.poll__list-item--mine {
  filter: invert(1);
}
.poll__count {
  padding-left: 2px;
  color: #777;
  font-size: 11px;
}

.comment-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 14px 24px;
}
.comment-item--indent {
  padding-left: 32px;
}
.comment-item--indent [data-comment] {
  display: none;
}
.comment-item__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.comment-item__header-avatar {
  width: 16px;
  height: 16px;
}
.comment-item__header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-item__header-text {
  flex: 1;
}
.comment-item__header-text b {
  color: #333;
  font-size: 12px;
  font-weight: 600;
}
.comment-item__header-text b i, .comment-item__header-text b em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-1px);
  width: 14px;
  height: 14px;
  margin-left: 4px;
  background-color: #333;
  color: #FFF;
  font-size: 9px;
  font-weight: 600;
  font-style: normal;
}
.comment-item__header-text b em {
  background-color: #086CC1;
}
.comment-item__header-text span {
  color: #777;
  font-size: 12px;
}
.comment-item__header-time {
  color: #777;
  font-size: 12px;
}
.comment-item__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.comment-item__content p {
  min-height: 18px;
  margin: 0;
  padding: 0;
  color: #555;
  font-size: 12px;
  line-height: 18px;
}
.comment-item__toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.comment-item__toolbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 4px;
  cursor: pointer;
  color: #333;
  font-size: 11px;
}
.comment-item__toolbar-item--active {
  filter: invert(1);
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 8px;
  background-color: #FFF;
  border-top: 1px solid #DDD;
}
.comment-form__to {
  color: #777;
  font-size: 12px;
}
.comment-form__input {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.comment-form__input textarea {
  flex: 1;
  padding: 6px;
  font-size: 12px;
}
.comment-form__input button {
  font-size: 12px;
}

.write {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  padding: 16px;
}
.write label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.write label > span {
  font-size: 13px;
  font-weight: 600;
}
.write label > input, .write label > textarea, .write label > select {
  width: 100%;
  padding: 6px 8px;
  resize: none;
  font-size: 14px;
}
.write > input {
  width: 100%;
  margin: 4px 0 0;
  padding: 12px 0;
  cursor: pointer;
}
.write__image-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.write__image-list-item {
  position: relative;
  width: 20%;
  aspect-ratio: 1;
}
.write__image-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.write__image-list-item-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  aspect-ratio: 1;
  padding: 0;
}

.map {
  width: 100%;
  height: 100%;
}

.chat-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.chat-list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 8px;
  border-bottom: 1px solid #DDD;
  color: #333;
  text-decoration: none;
}
.chat-list__item-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.chat-list__item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-list__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  flex: 1;
}
.chat-list__item-text-title {
  color: #333;
  font-size: 13px;
  font-weight: 500;
}
.chat-list__item-text-last-message {
  color: #555;
  font-size: 11px;
}
.chat-list__item-text-status {
  color: #999;
  font-size: 11px;
}
.chat-list__item-unread {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background-color: #DA3900;
  border-radius: 100px;
  color: #FFF;
  font-size: 11px;
  font-weight: 500;
}
.chat-list__item-unread:empty {
  display: none;
}

.chat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.chat-item__messages {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  width: 100%;
  padding: 12px;
  overflow-x: hidden;
  overflow-y: auto;
}
.chat-item__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 100%;
  padding: 8px;
  border-top: 1px solid #DDD;
}
.chat-item__form-input {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.chat-item__form-input textarea {
  flex: 1;
  outline: none;
}
.chat-item__bubble {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  margin-top: 6px;
}
.chat-item__bubble--admin {
  align-items: center;
  justify-content: center;
}
.chat-item__bubble--admin .chat-item__bubble-content {
  padding: 6px 16px;
  background-color: #F5F5F5;
  border-radius: 100vw;
  color: #555;
  font-size: 12px;
}
.chat-item__bubble--mine {
  flex-direction: row-reverse;
}
.chat-item__bubble--mine .chat-item__bubble-content {
  background-color: #086CC1;
}
.chat-item__bubble--mine .chat-item__bubble-content-text {
  color: #FFF;
}
.chat-item__bubble-content {
  background-color: #EEE;
}
.chat-item__bubble-content-text {
  padding: 6px 10px;
  color: #111;
  font-size: 12px;
}

/*# sourceMappingURL=style.css.map */
