/*---- 전역 설정 ----*/
html {
  font-size: 12px;
  font-family: "pretendard", sans-serif;
  font-weight: 500;
}
body {
  margin: 0;
  background-color: var(--body-bg);
}
body.spinner {
  overflow: hidden;
}
* {
  color: var(--font-color);
  cursor: url(https://cur.cursors-4u.net/cursors/cur-9/cur817.cur), auto !important;
}
*:focus {
  outline: none !important;
}
a,
li,
ul {
  list-style: none;
  text-decoration: none;
}
.another_category,
.tistoryProfileLayerTrigger {
  display: none !important;
}
::-webkit-scrollbar {
  width: var(--scroll-width);
  height: var(--scroll-width);
}
::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb);
}
body::-webkit-scrollbar-track {
  background-color: var(--body-bg);
}
::placeholder,
input,
textarea {
  font-size: 1rem !important;
  font-family: "pretendard", sans-serif;
  font-weight: 500;
}
::selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}

/* 로딩 */
body.spinner #spinner {
  visibility: visible;
  opacity: 1;
}
#spinner {
  visibility: hidden;
  position: fixed;
  background-color: var(--body-bg);
  background-size: 40px 40px;
  inset: 0;
  z-index: 99;
  opacity: 0;
  transition: var(--transition);
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--point-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/* 스킨 넓이 */
#skin {
  display: flex;
  flex-wrap: wrap;
  width: var(--skin-width);
  margin: 100px auto 80px;
}
[class^="ph-"]:before,
[class*=" ph-"]:before {
  font-size: 1.13rem !important;
}

/* 커버 사이드바 */
#sidebar {
  width: 400px;
  align-self: flex-start;
}

/* 프로필 박스 - 프로필 */
#profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-height: 100%;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
}
#profile .pr_img {
  display: flex;
  align-items: center;
}
.pr_img img {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  padding: 8px;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #fbfbfb;
  object-fit: cover;
}
.pr_img .text_box {
  margin-left: 20px;
}
.pr_img .text_box .title {
  font-size: 2rem;
  color: var(--point-color);
  font-family: "Roboto Condensed" !important;
}
.text_box .sub_title {
  color: #a4a4a4;
  font-size: 13px;
  margin-top: 5px;
}

/* 프로필 박스 - 메뉴 */
.menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.menu a {
  position: relative;
  width: calc(50% - 10px);
  height: 40px;
  line-height: 40px;
  margin: 5px;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  border: 1px solid #eee;
  border-radius: 6px;
  box-sizing: border-box;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}
.menu a i::before {
  font-size: 13px;
  line-height: 39px !important;
  transition: var(--transition);
}
.menu a:hover {
  color: #fff;
  letter-spacing: 1px;
}
.menu a:hover i::before {
  color: #fff;
}
.menu a::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fdfdfd;
  z-index: -1;
  transition: var(--transition);
}
.menu a::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--point-color);
  z-index: -1;
  transition: var(--transition);
}
.menu a:hover::before {
  width: 100%;
}
.menu a:hover::after {
  width: 0;
}

/* 외부링크 */
#link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
}
#link a {
  position: relative;
  width: calc(100% / 5);
  height: 45px;
}
#link a::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--point-color);
  transition: var(--transition);
}
#link a i::before {
  line-height: 45px !important;
  transition: var(--transition) !important;
}
#link a:hover i::before {
  color: var(--point-color);
  transform: scale(1.1);
}
#link a:hover::after {
  width: 100%;
}

/* 링크 툴팁  */
.tippy-box {
  background-color: #fff;
  color: var(--font-color) !important;
  font-size: 1rem;
  padding: 3px 5px;
  border: 1px solid #eee;
  border-radius: 6px;
  font-family: "pretendard" !important;
  transition: var(--transition);
}
.tippy-box[data-state="hidden"] {
  transform: translateY(-10px);
}
.tippy-box[data-state="visible"] {
  transform: translateY(0px);
}

/* 커버 - 공지사항 */
.cover + #container {
  display: none;
}
#sidebar + div {
  width: calc(100% - 420px);
  margin-top: 0;
  margin-left: auto;
}
.cover_notice {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
}
.cover_label {
  width: 100%;
  padding: 20px;
  color: var(--point-color);
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}
.notice_inner {
  padding: 20px;
  max-height: 100%;
  box-sizing: border-box;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.3rem;
  overflow-y: auto;
}
.notice_inner a[href] {
  display: inline-block;
  font-weight: 600;
  transition: var(--transition);
}
.notice_inner a[href]:hover {
  color: var(--point-color);
}
.notice_inner i {
  position: relative;
  top: 1px;
}

/* 커버 - 글목록형 아이템 */
.cover.listrep {
  width: 100%;
  margin-top: 20px;
}
.cover .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#gal.inner {
  padding: 20px 15px;
}

/* 컨테이너 */
#container {
  width: 100%;
  position: relative;
}

/* 검색 */
.search {
  display: block;
  width: 120px;
  margin-left: auto;
  margin-bottom: 20px;
}
.search input {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
  color: var(--font-color);
}
.search input::placeholder {
  text-align: center;
}

/* 컨테이너 헤더 */
#header {
  margin-bottom: 20px;
}
#header #profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
#header .pr_img img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  padding: 0;
  border: 1px solid #eee;
}
#header .menu {
  margin-top: 0;
}
#header .menu a {
  width: 40px;
}

/* 카테고리 */
#category {
  display: none;
  position: absolute;
  width: 200px;
  transform: translateY(-30px);
  right: 25px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 3;
}
.tt_category {
  padding-left: 0;
  margin: 0;
}
a.link_tit,
.c_cnt {
  display: none;
}
.category_list {
  padding-left: 0;
  text-align: left;
}
.category_list > li:last-child .sub_category_list {
  border-bottom: 0;
}
.category_list a {
  display: block;
  padding: 15px;
  word-break: break-all;
  transition: var(--transition);
}
.category_list a:hover {
  color: var(--point-color);
}
.sub_category_list {
  display: none;
  padding: 0;
  margin: 0;
  text-align: right;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #fefefe;
}

/* 글목록형 */
.listrep {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
}
#listStyle.gallery ~ .listrep {
  padding: 20px 15px;
}
#listStyle,
.index,
.item_sum {
  display: none;
}
.list_name {
  display: inline-flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 12px 15px;
  background-color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.list_name i {
  margin-right: 5px;
}

/* 글목록 - 갤러리형 */
.listrep .gallery {
  position: relative;
  width: calc(100% / var(--gallery-num));
  padding: 10px;
  box-sizing: border-box;
}
.listrep .gallery .thumb {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border: 2px solid #eee;
  border-radius: 6px;
  background-color: #fbfbfb;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  box-sizing: border-box;
}
.listrep .gallery .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0) scale(1.05);
  backface-visibility: hidden;
  transition: var(--transition);
}
.listrep .gallery .thumb img + .noimg {
  display: none;
}
.listrep .gallery .item_info {
  margin-top: 12px;
  text-align: center;
}
.listrep .gallery .item_info::before {
  display: block;
  content: "";
  margin: 0 auto;
  width: 20px;
  height: 2px;
  background-color: var(--point-color);
  margin-bottom: 8px;
}
.listrep .gallery .item_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listrep .gallery .item_title span {
  opacity: 1;
  transition: var(--transition);
}
.listrep .gallery .item_date {
  display: none;
}
.listrep .gallery:hover .item_title span {
  color: var(--point-color);
  opacity: 1;
}
.listrep .gallery:hover img {
  opacity: 0.7;
}

/* 글목록 - 기본형 */
.listrep .basic {
  width: 100%;
  border-bottom: 1px dashed #eee;
}
.listrep .basic:last-child {
  border-bottom: 0;
}
.listrep .basic .item {
  display: block;
  padding: 25px;
}
.listrep .basic .thumb {
  display: none;
}
.listrep .basic .item_info {
  width: 100%;
  display: flex;
  align-items: center;
}
.listrep .basic .item_info::before {
  display: inline-block;
  position: relative;
  width: 0;
  content: "\e9e4";
  font-family: "cappuccicons" !important;
  transform: scale(0.8);
  color: var(--point-color);
  overflow: hidden;
  transition: var(--transition);
}
.listrep .basic .item_title {
  padding-right: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.listrep .basic .item_title span {
  transition: var(--transition);
}
.listrep .basic:hover .item_title span {
  color: var(--point-color);
}
.listrep .basic:hover .item_info::before {
  width: 15px;
}
.listrep .basic .item_date {
  margin-left: auto;
  color: #a4a4a4;
}

/* 태그로그 */
.taglog {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
}
.taglog a {
  display: inline-block;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 12px;
  background-color: #fff;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.taglog a:hover {
  border: 1px solid var(--point-color);
  color: var(--point-color);
}

/* 본문 */
.article_info {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  padding: 20px;
}
.article_info .article_title {
  width: 100%;
  font-size: 1.1rem;
  padding-bottom: 20px;
  border-bottom: 1px dashed #eee;
  margin-bottom: 20px;
}
.article_info > div:not(:first-child),
.admin a {
  display: inline-flex !important;
  align-items: center;
  margin-right: 15px;
}
.article_info i,
.admin i {
  margin-right: 5px;
  color: var(--point-color);
}
.admin {
  text-align: right;
  margin-right: 0 !important;
  margin-bottom: 20px;
}
.admin a {
  color: var(--font-color);
  margin-left: 15px;
  margin-right: 0 !important;
}
.article {
  margin: 20px 0;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  padding: 20px;
  line-height: 1.3rem;
}
.article a[href],
.article a[href] * {
  display: inline-block;
  transition: var(--transition);
}
.article a[href]:hover,
.article a[href]:hover * {
  color: var(--point-color);
}
.article_bottom {
  margin-bottom: 20px;
  display: flex;
}
.article_bottom .tagTrail {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.article_bottom .tagTrail i::before {
  width: 40px;
  height: 40px;
  line-height: 39px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: var(--transition);
}
.article_bottom .tagTrail i:hover::before {
  color: ar(--point-color);
  border: 1px solid var(--point-color);
}
.article_bottom .tagTrail span {
  display: none;
  margin-top: 10px;
  width: 100%;
}
.article_bottom .tagTrail a {
  display: inline-block;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  margin-top: 5px;
  margin-right: 5px;
  box-sizing: border-box;
  word-break: break-all;
  transition: var(--transition);
}
.article_bottom .tagTrail a:hover {
  color: var(--point-color);
  border: 1px solid var(--point-color);
}
.article_bottom .cmt_toggle {
  margin-left: auto;
}
.cmt_toggle i::before {
  width: 40px;
  height: 40px;
  line-height: 39px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: var(--transition);
}
.cmt_toggle i:hover::before {
  color: ar(--point-color);
  border: 1px solid var(--point-color);
}
.hljs {
  font-family: "pretendard" !important;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px !important;
  background-color: #fff;
}

/* 보호글 */
.lock i::before {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
}
.password input {
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-radius: 0;
  text-align: center;
}
.password input::placeholder {
  text-align: center;
  text-transform: lowercase;
}

/* 인용구 */
blockquote {
  margin: 5px 0 !important;
}
blockquote[data-ke-style="style1"] {
  padding: unset !important;
  background: unset !important;
  text-align: left !important;
}
blockquote[data-ke-style="style1"] span {
  display: block;
  background-color: #fcfcfc;
  margin-top: 5px;
  padding: 10px;
  border-radius: 4px;
  color: var(--font-color) !important;
  font-size: 1rem !important;
  font-family: "pretendard", sans-serif !important;
}
blockquote[data-ke-style="style2"] {
  border-left: 3px solid var(--point-color);
  font-size: 1rem !important;
  color: var(--font-color) !important;
  padding-left: 5px;
}
blockquote[data-ke-style="style3"] {
  background: #fff !important;
  border: 1px solid #eee !important;
  padding: 10px !important;
  font-size: 1rem !important;
  color: var(--font-color) !important;
  border-radius: 4px !important;
}

/* 리스트 꾸미기 */
ul[data-ke-list-type="disc"],
ul[data-ke-list-type="circle"],
ol[data-ke-list-type="decimal"] {
  display: block;
  padding: 0;
}
ul[data-ke-list-type="disc"] li,
ul[data-ke-list-type="circle"] li,
ol[data-ke-list-type="decimal"] li {
  display: block;
  margin: 10px 0;
}
ul[data-ke-list-type="disc"] li *[data-ke-list-type],
ul[data-ke-list-type="circle"] li *[data-ke-list-type],
ol[data-ke-list-type="decimal"] li *[data-ke-list-type] {
  padding-left: 15px;
  margin: 10px 0;
}
ul[data-ke-list-type="disc"] li::before {
  display: inline-block;
  content: "\f111";
  font-family: "fontawesome";
  transform: scale(0.7);
  margin-right: 3px;
  font-weight: 900;
  color: var(--point-color);
}
ul[data-ke-list-type="circle"] li::before {
  display: inline-block;
  content: "\f111";
  font-family: "fontawesome";
  font-weight: 900;
  margin-right: 3px;
  transform: scale(0.7);
  color: var(--point-color);
}
ol[data-ke-list-type="decimal"] li::before {
  display: inline-block;
  content: "\ea55";
  font-family: "cappuccicons";
  position: relative;
  top: 1px;
  margin-right: 3px;
  transform: scale(0.7);
  color: var(--point-color);
}

/* 접은글 */
div[data-ke-type="moreLess"] {
  margin-bottom: 10px;
}
.btn-toggle-moreless {
  display: inline-block;
  margin: 3px 0 !important;
  padding: 7px 10px;
  position: relative;
  color: #fff !important;
  font-size: 1rem !important;
  font-family: "pretendard" !important;
  line-height: unset !important;
  background-color: var(--point-color);
  border: 1px solid #eee;
  border-radius: 8px;
}
.open .btn-toggle-moreless {
  background-color: #fff;
  color: var(--point-color) !important;
}
.moreless-content {
  padding: 15px;
  margin: 10px 0 20px 0;
  border-radius: 4px;
  background-color: #fcfcfc;
  word-break: break-word;
}

/* 첨부파일 */
figure.fileblock {
  display: flex;
  margin: 10px !important;
  width: unset !important;
  height: auto !important;
  border: 0 !important;
  box-shadow: unset !important;
}
figure.fileblock[data-ke-align="alignLeft"] {
  justify-content: flex-start;
}
figure.fileblock[data-ke-align="alignCenter"] {
  justify-content: center;
}
figure.fileblock[data-ke-align="alignRight"] {
  justify-content: flex-end;
}
figure.fileblock a {
  display: flex !important;
  height: auto !important;
  overflow: hidden;
}
figure.fileblock a::before {
  display: none !important;
}
figure.fileblock a::after {
  display: none;
}
figure.fileblock .image,
figure.fileblock .size {
  display: none !important;
}
figure.fileblock .desc {
  position: unset !important;
}
figure.fileblock .filename {
  height: auto !important;
  margin-top: 0 !important;
}
figure.fileblock .name {
  max-width: unset !important;
  height: auto !important;
  white-space: unset !important;
  overflow: unset !important;
  word-break: break-all;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px;
  background-color: #fff;
  color: var(--font-color);
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
}
figure.fileblock .name:hover {
  color: #fff;
  background-color: var(--point-color);
}
figure.fileblock .name::before {
  content: "\ea5d";
  font-family: "cappuccicons";
  margin-right: 5px;
  color: var(--point-color);
  transition: var(--transition);
}
figure.fileblock .name:hover::before {
  color: #fff;
}

/* 본문 이미지 */
.imagegridblock,
.image-container,
figure.imagegridblock .image-container > span {
  /* 초기화 */
  all: unset;
  margin-top: 0 !important;
}
figure.imageblock,
figure.imagegridblock {
  margin-top: 5px !important;
  margin-bottom: 0 !important;
}
figure.imagegridblock .image-container {
  align-items: stretch !important;
  margin-top: 5px !important;
}
figure.imagegridblock .image-container > span {
  flex: 1 !important;
  max-height: 300px;
}
figure.imagegridblock .image-container > span:not(:last-child) {
  margin-right: 5px !important;
}
figure.imagegridblock span img {
  width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
}
figcaption {
  padding-top: 5px !important;
}

/* 댓글폼 */
textarea {
  width: 100%;
  resize: none;
  height: 160px;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
  background: #fff;
  transition: var(--transition);
}
.member {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.member input {
  border: 1px solid #eee;
  border-radius: 6px;
  width: 80px;
  padding: 10px 15px;
  margin-right: 6px;
}
.member input::placeholder {
  text-align: center;
  text-transform: lowercase;
}
.submit {
  margin-left: auto;
  cursor: pointer;
}
.submit i::before {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 29px !important;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: center;
  padding: 5px;
  color: var(--font-color);
  background-color: #fff;
  transition: var(--transition);
}
.submit i:hover::before {
  color: var(--point-color);
  border: 1px solid var(--point-color);
}

/* 비밀 댓글 */
.check-bt {
  margin-bottom: 10px;
}
input[id="secret"] {
  display: none;
}
input[id="secret"] + label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
input[id="secret"] + label::before {
  display: block;
  content: "\eb6a";
  font-family: "cappuccicons";
  font-size: var(--font-size);
  width: 30px;
  height: 30p;
  line-height: 30px;
  color: var(--font-color);
  text-align: center;
  padding: 5px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  transition: var(--transition);
}
input[id="secret"]:checked + label::before {
  color: var(--point-color);
  border: 1px solid var(--point-color);
}

/* 댓글 리스트 */
.cmtList {
  margin-top: 40px;
}
.cmtList > li {
  margin-bottom: 60px;
}
.cmtList > li > div,
.cmtList ul > li > div {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 15px;
  background: #fff;
}
.cmtWrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cmtName {
  font-weight: 600;
  color: var(--point-color);
}
.cmtdesc {
  word-break: break-all;
  line-height: 1.3rem;
  padding: 15px;
}
.cmtDate {
  display: inline-block;
  margin-top: 15px;
  margin-left: auto;
  color: var(--font-color);
}
.cmtDate a {
  display: none;
}
.cmtList ul {
  margin: 0;
  padding-left: 30px;
}
.control {
  margin-left: auto;
}
.control a {
  display: inline-block;
  margin-left: 5px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  transition: var(--transition);
}
.control a i {
  color: var(--font-color) !important;
  transition: var(--transition);
}
.control a:hover {
  background-color: var(--point-color);
}
.control a:hover i {
  color: #fff !important;
}
.rp_admin .cmtName a,
.guest_admin .cmtName a {
  color: var(--point-color);
}

/* 공감버튼 */
.pages .container_postbtn,
.noti .container_postbtn,
.postbtn_ccl {
  display: none !important;
}
.container_postbtn {
  all: unset;
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 0 !important;
}
.container_postbtn .postbtn_like {
  all: unset !important;
}
.postbtn_like > div:not(:first-of-type),
.container_postbtn .btn_post .txt_like,
.ico_postbtn {
  display: none !important;
}
.btn_post {
  height: unset !important;
}
.wrap_btn {
  all: unset 1important;
}
.uoc-icon {
  all: unset;
  padding: 0 !important;
}
.container_postbtn .postbtn_like + .btn_menu_toolbar {
  display: none !important;
}

/* ++ 공감 아이콘 변경 */
.btn_post .uoc-icon::before {
  display: block;
  content: "\eb04";
  font-family: "cappuccicons" !important;
  font-size: 13px;
  border: 1px solid #eee;
  padding: 17px 15px;
  border-radius: 30px;
  color: var(--font-color);
  transition: var(--transition);
}
.uoc-icon.like_on::before {
  content: "\eb03";
  color: var(--point-color);
}

/* 페이징 */
.paging {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 40px 0;
}
.paging a i::before {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #aaa;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  transition: var(--transition);
}
.paging a i:hover::before {
  border: 1px solid var(--point-color);
  color: var(--point-color);
}

@media all and (max-width: 580px) {
  #sidebar {
    margin-top: 40px;
    width: 100% !important;
  }
  #sidebar + div {
    width: 100% !important;
    margin-top: 20px !important;
  }
  .cover_notice {
    margin-top: 20px !important;
    height: unset !important;
  }
  #header #profile {
    flex-direction: column;
    align-items: flex-start;
  }
  #header .menu {
    align-self: flex-end;
    margin-top: 20px;
  }
  #header .menu a {
    margin: 0 0 0 10px;
  }
  .listrep .gallery {
    width: 50% !important;
  }
}
