@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap");
* {
  font-family: "Noto Sans KR", "Nanum Gothic", "NanumBarunGothic", "나눔고딕", "Malgun Gothic", "맑은 고딕", "돋움", sans-serif, serif;
  box-sizing: border-box;
}

:root {
  --leftbar-width: 280px;
  --leftbar-bg: #2d353c;
  --leftbar-fcolor: var(--py-gray-5);
  --topbar-bg: #f3f3f4;
  --category-input-color: var(--py-gray-9);
}

html, body {
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  html .main-body, html .sub-body, body .main-body, body .sub-body {
    font-size: 14px;
  }
}

.py-ui p {
  margin: 0;
  padding: 0;
}
.py-ui.left-side-- #sidefix-topbar {
  padding-left: var(--leftbar-width);
}
.py-ui.left-side-- .wrapper-body {
  margin: 0 0 0 var(--leftbar-width);
  width: calc(100% - var(--leftbar-width));
}
@media screen and (max-width: 768px) {
  .py-ui.left-side-- #sidefix-topbar {
    padding-left: 0;
  }
  .py-ui.left-side-- .wrapper-body {
    margin: 0 0 0 0;
    width: 100%;
  }
  .py-ui.left-side-- #sidefix-leftbar {
    position: absolute !important;
  }
  .py-ui.left-side-- #sidefix-leftbar .header-- .leftbar-close {
    display: flex;
  }
}
.py-ui .wrapper {
  width: 100%;
  overflow-x: hidden;
  display: flex;
}
.py-ui #sidefix-leftbar {
  width: var(--leftbar-width);
  border: 0;
  background-color: var(--leftbar-bg);
  color: var(--leftbar-fcolor);
  height: 100vh;
}
.py-ui #sidefix-leftbar > .header-- {
  height: 155px;
  min-height: 150px;
  background: url(../../static/images/cover-bg.png);
  display: flex;
  padding-left: 30px;
  position: relative;
}
.py-ui #sidefix-leftbar > .header-- .profile-box {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.py-ui #sidefix-leftbar > .header-- .profile-box::after {
  content: "\e93e";
  display: inline-block;
  font-family: xeicon !important;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  color: var(--py-gray-3);
}
.py-ui #sidefix-leftbar > .header-- .profile-box .py-profile {
  overflow: hidden;
}
.py-ui #sidefix-leftbar > .header-- .profile-box .py-profile img {
  width: 100%;
  border-radius: 50%;
}
.py-ui #sidefix-leftbar > .header-- .profile-box .account-info {
  display: flex;
  flex-direction: column;
  color: var(--py-gray-3);
}
.py-ui #sidefix-leftbar > .header-- .leftbar-close {
  position: absolute;
  display: none;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 2em;
  font-size: 1.2rem;
  border: 1px solid var(--py-gray-2);
  color: var(--py-gray-2);
  outline: none;
  background-color: transparent;
}
.py-ui #sidefix-leftbar > .header-- .go-home {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 60px;
}
.py-ui #sidefix-leftbar > .header-- .go-home i {
  font-size: 2rem;
  color: #fff;
}
.py-ui #sidefix-leftbar > .header-- .do-logout {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 15px;
}
.py-ui #sidefix-leftbar > .header-- .do-logout i {
  font-size: 2rem;
  color: #fff;
}
.py-ui #sidefix-leftbar .body-- {
  display: flex;
  flex-direction: column;
}
.py-ui #sidefix-leftbar .body-- .posts-category {
  flex: 1;
}
.py-ui #sidefix-leftbar .body-- .pymo-posts-app.cate_v1 {
  padding: 10px 0px;
  min-height: 300px;
}
.py-ui #sidefix-leftbar .custom-menu {
  padding: 10px 0px;
  border-top: 1px solid var(--gray-7);
}
.py-ui #sidefix-leftbar .custom-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.py-ui #sidefix-leftbar .custom-menu ul li {
  padding: 5px 10px;
}
.py-ui #sidefix-leftbar .custom-menu ul li:hover, .py-ui #sidefix-leftbar .custom-menu ul li:focus {
  background-color: var(--py-gray-6);
}
.py-ui #sidefix-leftbar .custom-menu ul li a {
  width: 100%;
  border: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.py-ui #sidefix-leftbar .custom-menu ul li a i {
  font-size: 1.1em;
}
.py-ui #sidefix-leftbar > .footer-- {
  text-align: center;
  background-color: var(--py-gray-9);
  display: block;
  padding: 10px;
}
.py-ui #sidefix-leftbar > .footer-- span {
  color: var(--py-gray-2);
}
.py-ui #sidefix-topbar {
  padding-left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: var(--topbar-bg);
  border: 0;
  border-bottom: 1px solid var(--py-gray-3);
  transition: padding-left 0.5s ease-in;
}
.py-ui #sidefix-topbar .header-- {
  min-height: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.py-ui #sidefix-topbar .header-- button {
  padding: 5px 10px;
  margin: 0;
}
.py-ui #sidefix-topbar .header-- .title strong {
  font-weight: 600;
  color: var(--py-gray-7);
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.py-ui #sidefix-topbar .header-- .title strong.no-color {
  gap: 5px;
}
.py-ui #sidefix-topbar .header-- .title strong.no-color i {
  font-size: 1.2em;
}
.py-ui #sidefix-topbar .header-- .title strong:not(.no-color)::before {
  content: " ";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  display: block;
  background-color: var(--cate-color);
}
.py-ui .wrapper-body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-shrink: 1;
  margin: 0 0 0 0;
  width: 100%;
  padding: 0 15px;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  transition: margin 0.5s ease-in;
}
.py-ui .main-body {
  margin-top: 50px;
  min-height: 400px;
}
.py-ui .main-body > .container {
  border: 0px solid red;
}

.posts-category .posts-category-card {
  border-radius: 0;
  background-color: transparent;
}
.posts-category .posts-category-card .header {
  background-color: transparent;
  padding: 10px;
  border-bottom: 1px solid var(--py-gray-9);
}
.posts-category .posts-category-card .body {
  background-color: transparent;
}
.posts-category .posts-category-card .body .cate_v1.pymo-posts-app .cate_list button.link-- {
  color: #fff;
}
.posts-category .posts-category-card .body .cate_v1.pymo-posts-app .cate_list li:hover {
  background-color: var(--py-gray-6);
}
.posts-category .posts-category-card .body .cate-write .header-- {
  color: var(--category-input-color);
}
.posts-category .posts-category-card .body .cate-write .body-- {
  padding: 0px 10px;
}
.posts-category .posts-category-card .body .cate-write .py-inputext .select-text, .posts-category .posts-category-card .body .cate-write .py-inputext .input-wrap input, .posts-category .posts-category-card .body .cate-write .py-inputext .item-list-- li span {
  color: var(--category-input-color);
}/*# sourceMappingURL=theme.css.map */