@charset "UTF-8";

/*skin start*/

/* font */
@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}


/* CSS Document */
* {
  padding: 0;
  margin: 0; 
  box-sizing: border-box; 
  font-family: 'Pretendard-Regular';
  outline: none; 
  font-size: inherit; 
  line-height: inherit; 
  word-break:break-all;
}

a { 
  text-decoration: none; 
  background: transparent; 
  color: var(--point1-color); 
}

ul, li, ol {
  list-style: none; 
  padding:0; 
  margin: 0;
}

input:focus, textarea:focus, ::placeholder {
  outline: none; 
  border: none;
}

button {
  padding: 0; 
  border:0; 
  background: transparent;
}

img {
  vertical-align: bottom;
}

textarea {
  resize: none;
}

* a:hover {
  color: var(--point2-color); transition: all 0.3s ease;
}

body {
  color: var(--point1-color);
  overflow-x: hidden;
}


/* loading */
 #loading { 
 width: 100%; 
 height: 100%; 
 top: 0; 
 left: 0; 
 background: #ffffff;
 position: fixed; 
 display: none; 
 z-index: 999; 
 opacity: 0.9;
}

#loading > img { 
  display: none; 
  width: 70px; 
  height: 70px; 
  margin: auto;
}

/* dark-mode toggle */
html[data-theme='light'] {
  --transform-mode: translateX(0px);
  --active-blob: calc(translateY(100%));
  --light-on: flex;
  --light-off: none;
  --tc-filter: invert(100%) hue-rotate(180deg);
  --side-img-light: flex;
  --side-img-dark: none;
}

html[data-theme='dark'] {
  --transform-mode: translateX(14px);
  --active-blob: calc(translateY(50%));
  --tc-filter: invert(0%);
  --side-img-light: none;
  --side-img-dark: flex;
}

button.theme-toggle {
  cursor:pointer;
}

span.toggle {
  background: var(--point1-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  display: inline-block;
  position: relative;
  width: 32px;
  height: 18px;
}

span.toggle::after {
  background: var(--point2-color);
  border-radius: 50%;
  content: '';
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: all ease-in-out 0.2s!important;
  width: 12px;
  height: 12px;
  transform: var(--transform-mode);
}

span.toggle:active::after {
  transition: all ease-in-out 0.2s;
  width: calc(100% - 4px);
  border-radius: 12px;
  transform: var(--active-blob);
} 


/* dark-mode */
#darkmode {
  position: relative;
  width: var(--width-width);
  text-align: right;
  margin: 10px 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}


/* 폰트사이즈 변경 
  font-size: 숫자px / 
 글자간격 조절 line-height 숫자px 조절
*/
html {
  background: var(--body-color);
  --radius-: 3px;
  --font-size: 12px;
  --line-height: 15px;
}  


/* layout */
#main {
  font-size: var(--font-size);  
  line-height: 15px; 
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  flex-direction: column; 
}

#mobile-menu {
  display: none;
}

#whole {
  border: solid 1px var(--border-color);
  width: var(--width-width);
  height: var(--height-height); 
  background: var(--article-color);
  border-radius: var(--radius-);
  margin-bottom: 15px;
  box-shadow: var(--box-color);
}

#container {
  height: calc(100% - 70px);
  overflow-y: auto;
  padding: 10px 10px 0 10px;
}


#footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  height: 70px;
  border-top: solid 1px var(--border-color);
  position: relative;
}


/* pop-up */
.back { 
  display:none; 
  position:fixed; 
  z-index:99; 
  width:100%; 
  top:0; 
  left:0; 
  bottom:0; 
  right:0; 
  background:var(--point1op-color);}


.back-xx {
  width: 100%;
  height: 100%;
}

.pop-inner {
  position: absolute;
  z-index: 100;
  width: 500px;
  background: var(--article-color);
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
  box-shadow: var(--box-color);
  top: 50%;
  left: 50%;
  text-align: left;
  opacity: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  padding: 10px;
  color: rgba(39,39,39,1.00);
  font-size: var(--font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.xxx {
  text-align: right;
  widows: 100%;
  color: var(--point1-color);
  font-weight: bold;
}

.xxx:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-profile {
  display: flex;
  flex-direction: row;  
}

.back-proimg {
  position: relative;
  margin-right: 5px;
}

.back-proimg img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-);
}

.back-info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.back-text {
  height: calc(100% - 20px);
}

.back-title {
  color: var(--point1-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.back-blogger {
  color: var(--point2-color);
  margin-bottom: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.back-desc {
  color: var(--text-color);
  height: 190px;
  overflow-y: auto;
}

.back-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  margin-top: 5px;
}


/* search */
.search {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--article-color);;
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
  padding: 5px;
  justify-content: center;
}

.search-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.search input::placeholder {
  color: var(--point1-color);
}

.search input{
  color: var(--point2-color);
  padding: 0 3px;
  border: none;
  font-family: 'Pretendard-Regular';
  background: none;
  letter-spacing: 1.5px;
  width: calc(100% - 15px);
}

.submit {
  width: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--point1-color);
  cursor: pointer;
}

.submit:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}


/* footer */
.menu, .cate {
  display: flex;
  flex-direction: row;
  width: 50%;
  justify-content: center;
}

.menu a, .cate a {
  font-weight: bold;
}

.menu li:nth-child(2n), .cate li:nth-child(2n) {
  margin: 0 10px;
}

.cate li:first-child{
  margin-left: 10px;
}

.proimg {
  position: absolute;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);  
  border: solid 2px var(--border-color);
  z-index: 2;
}

.proimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: solid 2px var(--article-color);
  border-radius: 50%;
}

img.proimg-img-light {
  display: var(--side-img-light);
}

img.proimg-img-dark {
  display: var(--side-img-dark);
}

/* paging */
/* paging */
#paging{
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-paging{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  height: 30px;
  border: solid 1px var(--border-color);
  background: #fff;
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  padding: 0 5px;
}

.num {
  margin: 0 5px;
}

.p-prev a, .p-next a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: solid 1px var(--border-color);
  background: #fff;
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

#paging .selected{
  color: var(--point2-color);
  font-weight: bold;
}

.info-prog {
  padding: 10px;
}

.prog-txt{
  float: right;
  text-transform: uppercase;
  color: var(--point2-color);
}

.prog-name{
  text-transform: uppercase;
  color: var(--point1-color);
  font-weight: bold;
}

.prog-bar{
  width: 100%;
  height: 4px;
  margin-top: 2px;
  border-radius: var(--radius-);
  background: var(--point2-color);
}

.bar-line1, .bar-line2, .bar-line3{
  background: var(--point1-color);
  height: 4px;
  border-radius: var(--radius-);
}

.prog:not(:first-child) {margin-top: 10px;}

.favorite-img{
  position: relative;
  width: 100%;
}

.favorite-img img {
  width: 100%;  
}



/* list */
.empty {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  color: var(--point2-color);
  justify-content: center;
}

.list-inner::first-letter{
  content: '';
  display: block;
  clear: both;
  margin: 0;
  padding: 0;
}

.cate-folder{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-bottom: solid 1px var(--border-color);
}

.list-cate {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-right: 5px;
}

.cate-info{
  font-size: 13px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
}

.cate-desc {
  margin-top: 2px;
  color: var(--point2-color);
}

.cate-conform{
  display: flex;
  align-items: center;
  font-weight: bold;
}

.cate-conform svg{
  margin-right: 5px;
}

.cate-count{
  color: var(--point2-color);
}

.list-inner {
  height: 100%;
}


/* list-basic */
.cover-container {
 padding-bottom: 10px;
}

#list-basic .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  margin-bottom: 10px;
}

.list-basic.inner,
#list-basic {
  margin-bottom: 10px;
}

#list-basic .thumbnail, #list-basic .summary, #list-basic .memo{
  display: none;
}

.list-basic .cover-wrap,
#list-basic .list-wrap {
  display: block;
}

.list-basic .info, 
#list-basic .info {
  width: 100%; 
  display: flex; 
  flex-direction: row; 
  justify-content: space-between;
  align-items: center;
  position: relative;
}
 
#list-basic .list-title {
  width: calc(100% - 50px); 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.inner:first-child .cover-title{
  border-top: none;
}

.cover-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: left;
  color: var(--point1-color);
  font-weight: bold;
  font-size: 13px;
}

.cover-title svg {
  margin-right: 5px;
}

#list-basic .list-date {
  width: 100px;
  text-align: right;
}

.list-basic .list-title{
  width: calc(100% - 100px); 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: bold;
}


.list-basic .list-date{
  width: 100px;
  text-align: right;
}

#list-basic .list-lock .list-title::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

.list-basic .cover-item,
#list-basic .list-item{
  display: block;
  position: relative;
  margin-bottom: 10px;
  width: 100%; 
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  padding: 5px;
}

.list-basic .cover-item:hover,
#list-basic .list-item:hover {
  border: solid 1px var(--point2-color);
}

/* list-memo */
#list-memo .thumbnail, #list-memo .summary, #list-memo .info {
  display: none;
}

.list-memo .cover-inner::after {
  content: ''; display: block; clear: both; margin: 0; padding: 0;
}


#list-memo .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-memo .cover-inner{
  display: flex;
  flex-wrap: wrap;
}

#list-memo .list-inner{
  height: 100%;
  display: flex;
  padding-top: 10px;
  flex-wrap: wrap;
}

.list-memo .cover-wrap,
#list-memo .list-wrap{  
  float: left; 
  width: calc((100% - 10px) / 2);
  margin: 0 10px 10px 0;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;    
  border: solid 1px var(--border-color);
  box-shadow: var(--box-color);
  border-radius: var(--radius-);
  padding: 5px;
}

.list-memo .cover-wrap:hover,
#list-memo .list-wrap:hover {
  border: solid 1px var(--point2-color);
}

.list-memo .cover-wrap:nth-child(2n),
#list-memo .list-wrap:nth-child(2n)
{
  margin-right: 0;
}

.list-memo .cover-item, 
#list-memo .list-item{
  display: block;
  height: 100%;
  position: relative;
}

.list-memo .memo,
#list-memo .memo {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.list-memo .memo-info,
#list-memo .memo-info {
  display: flex;
  align-items: center;
}

#list-memo .thumbnail {
  order: 2;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#list-memo .thumbnail img {
  position: absolute;
  width: 100%;  
  /* 이미지 위치 */
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
}

.list-memo .memo-item,
#list-memo .memo-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.list-memo .memo-user,
#list-memo .memo-user {
  position: relative;
  width: 30px;
  margin-right: 10px;
}

.list-memo .memo-user img,
#list-memo .memo-user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.list-memo .memo-title,
#list-memo .memo-title {
  width: 100%;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.list-memo .memo-date,
#list-memo .memo-date {
  width: 100%;
  color: var(--point2-color);
}

.list-memo .memo-desc,
#list-memo .memo-desc {
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;  
  height: calc(100% - 45px);
  margin: 5px 0;
}

#list-memo .list-lock .memo-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

.list-memo .cover-wrap:hover,
#list-memo .list-wrap:hover {
  transition: all 0.3s ease;
}

#list-memo .memo-title {
  font-weight: bold;
}

#list-memo .memo-title span {
  color: var(--point2-color);  
  margin-top: 3px;
  font-weight: normal;
}

#list-memo .memo-cate, 
.list-memo .memo-cate {
  font-weight: bold;
  text-align: right;
}


/* list-gallery */
#list-gallery .memo, #list-gallery .summary, #list-gallery .info {display: none;}

.list-gallery .cover-inner::after {
  content: ''; 
  display: block; 
  clear: both; 
  margin: 0; 
  padding: 0;
}

#list-gallery .list-inner{
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}

.list-gallery .cover-inner{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

#list-gallery .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-gallery .cover-wrap,
#list-gallery .list-wrap{
  float: left;
  width: calc((100% - 10px) / 2);
  margin: 0 10px 10px 0;
  position: relative;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-gallery .cover-wrap:nth-child(2n),
#list-gallery .list-wrap:nth-child(2n){
  margin-right: 0;
}

.list-gallery .cover-item,
#list-gllery .list-item{
  display: block;
}

.list-gallery .thumbnail
{
  width: 100%;
  overflow: hidden;
  position: relative;
} 

#article-related {
  margin-bottom: 10px;
}

#list-gallery .thumbnail,
#article-related .thumbnail {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#list-gallery .list-item {
  position: relative;
}

.list-gallery .thumbnail img,
#list-gallery .thumbnail img,
#article-related .thumbnail img {
  width:100%;
  -webkit-transform: scale(1); 
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background: var(--article-color);
  opacity: 1;
}  

#list-gallery .thumbnail-info,
.list-gallery .thumbnail-info {
  padding: 10px;
  overflow: hidden;
  width: 100%; 
  height: 100%;
  background: #44444478;
  position: absolute; 
  top: 0; 
  left: 0; 
  border-radius: var(--radius-);
  opacity: 0;
  transition: 0.3s; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  color: var(--point1-color);
  font-weight: bold;
  flex-direction: column;
}

#article-related .thumbnail-info{
  padding: 10px;
  overflow: hidden;
  width: 100%; 
  height: 100%;
  position: absolute; 
  top: 0; 
  left: 0; 
  border-radius: var(--radius-);
  opacity: 0;
  transition: 0.3s; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--point1-color);
  font-weight: bold;
  flex-direction: column;
}

.list-gallery .thumbnail-item,
#list-gallery .thumbnail-item {
  color: var(--point1-color);
  text-align: center;
  width: 100%;
  font-weight: normal;
  margin-bottom: 10px;
}

.list-gallery .thumbnail-text,
#list-gallery .thumbnail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--point2-color);
}

.list-gallery .thumbnail-title,
#list-gallery .thumbnail-title{
  text-overflow: ellipsis; 
  display: -webkit-box;
  line-height: 22px;
  -webkit-line-clamp: 3; 
  text-align: center; 
  -webkit-box-orient: vertical;  
  width: 100%;
  overflow: hidden;
  padding: 5px;
  color: var(--point1-color);
}

#article-related .thumbnail-title {
  text-overflow: ellipsis; 
  display: -webkit-box;
  line-height: 22px;
  -webkit-line-clamp: 3; 
  text-align: center; 
  -webkit-box-orient: vertical;  
  width: 100%;
  overflow: hidden;
  padding: 5px;
  color: var(--point2-color);
}

.list-gallery .cover-wrap .thumbnail:hover .thumbnail-info,
.list-gallery .cover-wrap .thumbnail:focus .thumbnail-info,
#list-gallery .list-wrap .thumbnail:hover .thumbnail-info, 
#list-gallery .list-wrap .thumbnail:focus .thumbnail-info,
#article-related .list-wrap .thumbnail:hover .thumbnail-info,
#article-related .list-wrap .thumbnail:focus .thumbnail-info{
  opacity: 1; 
  transition: all 0.3s ease;
}

.list-gallery .cover-item:hover img,
#list-gallery .list-item:hover img,
#article-related .list-item:hover img{
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
  opacity: .5;
}

.list-gallery .cover-item:hover .thumbnail:before, 
#list-gallery .list-item:hover .thumbnail:before,
#article-related .list-item:hover .thumbnail:before {
  opacity: 0;
}

.list-gallery .cover-item:hover .thumbnail:after,
#list-gallery .list-item:hover .thumbnail:after,
#article-related .list-item:hover .thumbnail:after {
  width: 100%;
}
 
#list-gallery .list-lock .thumbnail-info::after {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight: 700;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
  margin-top: -3px;
}


 #list-gallery .list-lock .thumbnail:before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex; 
  justify-content: center; 
  align-items: center;
  width: 10px;
  height: 10px;
  opacity: 1;
  z-index: 1;
  color: var(--point2-color);
  transition: all 0.3s ease;
}


#list-gallery .list-wrap .thumbnail:after,
#article-related .list-wrap .thumbnail:after {
 z-index: 99; 
 width: 0; 
 height: 6px; 
 position: absolute;
 left: 0; 
 top: 0; 
 content: ""; 
 -webkit-transition: all 0.3s ease-in-out; 
 transition: all 0.3s ease-in-out; 
}

.list-gallery .list-title,
#list-gallery .list-title{
  font-weight: bold;
  width: 100%; 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}


.list-gallery .cover-item:hover .thumbnail-title,
.list-gallery .cover-item:hover .thumbnail-item,
#list-gallery .list-item:hover .thumbnail-title{
  color: var(--point2-color);
  transition: all 0.3s ease-in-out; 
}


/* list-summary */
#list-summary .memo, #list-summary .info, #list-summary .thumbnail-info {display: none;}

.list-summary .cover-inner {
  display: flex;
  flex-wrap: wrap;
}

#list-summary .list-inner {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}


#list-summary .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-summary .cover-wrap,
#list-summary .list-wrap{
  float: left;
  width: calc((100% - 10px) / 2);
  margin: 0 10px 10px 0;
  position: relative;
  overflow: hidden;
  border: solid 1px var(--border-color);
  box-shadow: var(--box-color);
  border-radius: var(--radius-);
  padding: 5px;
}

.list-summary .cover-wrap:nth-child(2n),
#list-summary .list-wrap:nth-child(2n){
  margin-right: 0;
}

.list-summary .cover-item,
#list-summary .list-item {
  display: flex;
  flex-direction: column;  
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius-);
}

.list-summary .cover-item .thumbnail,
#list-summary .list-item .thumbnail {
  width: 100%;
  height: 200px;
  order: 1;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-);
}

.list-summary .cover-wrap .thumbnail img,
#list-summary .list-wrap .thumbnail img{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  opacity: 1;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.list-summary .cover-wrap:hover img,
#list-summary .list-wrap:hover img{
	opacity: .5;
}


.list-summary .summary,
#list-summary .summary {
  display: flex;
  width: 100%;
  order: 2;
  flex-direction: column;
}

.list-summary .summary-info,
#list-summary .summary-info{
  display: flex;
  margin-top: 5px;
  justify-content: space-between;
}

.list-summary .summary-title,
#list-summary .summary-title {
  width: calc(100% - 70px);
  overflow: hidden;
  display: -webkit-box;
  font-weight: bold;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
}

.list-summary .summary-desc,
#list-summary .summary-desc {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;  
  margin-top: 5px;
  line-height: 1.5;
}

#list-summary .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}


.list-summary .cover-item:hover,
#list-summary .list-item:hover {
  transition: all 0.3s ease-in-out;
}


/* cover - notice */
.cover-container .inner{
  overflow: hidden;
  margin-bottom: 10px;
  border: solid 1px var(--border-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  padding: 10px 10px 0 10px;
} 
 
.cover-container .inner:last-of-type{
  margin-bottom: 0;
}

.notice .cover-inner {
  padding-bottom: 10px;
}

.notice .notice-img {
  position: relative; 
  width: 100%; 
  margin-bottom: 10px;
}

.notice .notice-img img {
  max-width: 100%;
}

.notice .cover-title:first-child {
  border-top: none;
}

/* swiper */
.c-swiper.inner {
  width: 100%;
}

.swiper {
  width: 100%; height: 100%;
}

.swiper.mySwiper  {
  width: 100%; 
  max-height: 300px;
  overflow: hidden;
  padding-bottom: 10px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.swiper-slide img {
  display: block; 
  width: 100%; 
  object-fit: cover; 
  height: 100%;
  border-radius: var(--radius-);
}

.swiper-pagination-bullet{
  background: var(--point1-color) !important;
}
 

/* article */
.postbtn_like .wrap_btn_share, .container_postbtn .btn_post .ico_share{
  width: 0 !important;
}

#article {
  color: var(--text-color);
  padding-bottom: 10px;
}

#article .article-desc {
  color: var(--text-color);
}

#article .btn_menu_toolbar{
  display: none !important;
}

#article .article-wrap {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.article-tag{
  display: none;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  padding: 10px;
  margin-bottom: 10px;
}

.article-tag a::before {
   content: '#'; margin-right: 3px;
}


/* article - desc */
.article-wrap {
  padding: 5px;
}

.article-cate a{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.article-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.article-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--point1-color);
}

.article-date {
  margin-top: 5px;
  color: var(--point2-color);
}

.article-paging {
  margin-top: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.article-paging a:hover {
  font-weight: bold;
  transition: all 0.3s ease-in-out; 
}


/* article - tt */
.footnotes {
  margin: 10px 0;
}

.footnote a {
  color: var(--point1-color) !important;
}

blockquote[data-ke-style='style1']{
  text-align: center;
}

blockquote[data-ke-style='style1'] span:before{
  content: ''; 
  display: block; 
  background: url(https://t1.daumcdn.net/keditor/dist/0.4.9/image/blockquote-style1.svg) no-repeat 50% 0; 
  padding-top: 25px; 
  transform: rotate(0deg);
  margin-top: 10px; 
}

blockquote[data-ke-style='style1'] span:after{
  content: ''; 
  display: block; 
  background: url(https://t1.daumcdn.net/keditor/dist/0.4.9/image/blockquote-style1.svg) no-repeat 50% 0; 
  padding-top: 25px; 
  transform: rotate(180deg); 
  margin-bottom: 10px;
}

 blockquote[data-ke-style='style2'] {
  padding:5px; 
  margin:10px 0;  
  font-size: 12px; 
  line-height:20px; 
  font-weight: bold;
  text-align: left; 
  background: #fff;
  border-left: solid 7px var(--border-color);
  border-right: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
  border-top: solid 1px var(--border-color);
}

 blockquote[data-ke-style='style3'] {
 padding: 5px; 
 margin:10px 0; 
 font-size: var(--font-size); 
 line-height: 20px; 
 overflow-y: auto;
 border-radius: 5px;
 border: solid 1px var(--border-color);
 }

 blockquote[data-ke-style='style3'] img {
  width: 100%;
}

 blockquote p  {
  font-size: var(--font-size) !important;
}

ul[data-ke-list-type='disc'], ul[data-ke-list-type='circle'],ol[data-ke-list-type='decimal'] {
  padding-left: 10px;
  margin: 10px 0;
}

ul[data-ke-list-type='disc'] li::marker, ul[data-ke-list-type='circle'] li::marker, ol[data-ke-list-type='decimal'] li::marker  {
  color: var(--point1-color);
}

figure.imageslideblock div.mark {
  height: 22px !important;
}

figure.imageslideblock div.mark span {
  margin: 10px 1px !important;
}

figure.imageslideblock figcaption{
  color: var(--point1-color);
  font-weight: bold;
}

.contents_style table td{
  padding: 5px;
}


/* article-btn */
#btn-inner{
  display: flex;
  flex-direction: column;
}

.article-btn {
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
}

.btn-item {
  display: flex;
}

.comment-btn, .related-btn, .tag-btn {
  display: flex;
  align-items: center;
  padding: 5px;
  color: var(--point1-color);
  font-weight: bold;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.comment-btn, .tag-btn{
  margin-right: 5px;
}

.container_postbtn .postbtn_like{
  padding: 0 !important;
  border: solid 1px var(--border-color) !important;
  background: var(--article-color) !important;
  border-radius: var(--radius-) !important;
  box-shadow: var(--box-color) !important;
  color: var(--point1-color) 
}

.container_postbtn{
  padding: 0 !important;
  margin: 15px 0;
}

.container_postbtn button:focus, .layer_post button:focus,.layer_tooltip button:focus {
    outline: none !important;
}

.comment-btn:hover, .related-btn:hover, .tag-btn.tag-btn:hover {
  border: solid 1px var(--point2-color);
  transition: all 0.3s ease-in-out; 
  cursor: pointer;
  color: var(--point2-color);
}


/*article-related*/
#article-related {
  display: none;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

#article-related .list-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}

#article-related .list-wrap{
  float: left;
  width: calc((100% - 30px) / 4);
  margin: 0 10px 0 0;
  position: relative;
}

#article-related .list-wrap:nth-child(4n){
  margin-right: 0;
}


/* namecard */
[data-tistory-react-app='Namecard']{
  order: 4;
}

.tt_box_namecard{
  margin: 0 !important;
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-);
  min-height: 120px !important;
  justify-content: center !important;
  align-items: center;
  background: var(--article-color) !important;
}

.tt_box_namecard .tt_cont{
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tt_box_namecard .tt_wrap_thumb {
  margin: 5px !important;
  border-radius: var(--radius-) !important;  
}

#article .tt_txt_g {
  font-size: var(--font-size) !important;
  color: var(--point1-color) !important;
}

.tt_box_namecard .tt_btn_subscribe{
  margin-top: 10px !important;
  margin-bottom: 0px !important;
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-) !important;  
}

.tt_box_namecard .tt_btn_subscribe:hover{
  border: solid 1px var(--point2-color)!important;
  color: var(--point2-color) !important;
  transition: all 0.3s ease-in-out; 
}

#article .tt_box_namecard .tt_btn_subscribe:hover .tt_txt_g{
  color: var(--point2-color) !important;
}

  
/* comment */
#comment {
  display: none;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  padding: 10px 10px 5px 10px;
  margin-bottom: 10px;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

#guestbook {
  padding: 10px 5px;
}

#guestbook .tt-box-total,
#guestbook .tt-comment-cont > form,
#guestbook .tt-list-reply > li {
  background: var(--article-color);
}

.tt-wrap-cmt .tt_desc, .tt-wrap-cmt {
  font-family: 'Pretendard-Regular';
  font-size: var(--font-size) !important;
  color: var(--text-color) !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.tt-box-total {
  order: 1;
  padding: 10px;
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
}

.tt-comment-cont > form {
  order: 2;
  padding: 10px;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color) !important;
  margin-bottom: 5px !important; 
  box-shadow: var(--box-color);
}

.tt-txt-mention{
  background: transparent !important;
}

.tt-item-reply > form {
  padding: 10px;
}

.tt_txt_g {
  font-size: 0 !important;
}

.tt-box-total .tt_txt_g::after {
  content:"\f4ad";
  font-family:"Font Awesome 5 Free";
  font-weight:700;
  color: var(--point1-color);
  font-size: 15px;
  margin:0 5px;
}

.tt-box-total {
  display: flex;
  justify-content: flex-end;
  padding: 0 !important;
  margin-bottom: 5px;
  border: none !important; 
}

.tt-box-total .tt_num_g{
  color: var(--point1-color);
}

.tt-box-textarea .tt-inner-g {
  border: solid 1px var(--point2-color) !important;
  padding: 5px !important; 
  background: var(--article-color);
  border-radius: var(--radius-) !important;
}

.tt-item-reply {
  padding: 0 !important;
  border: none !important;
  margin: 5px 0;
}

.tt-list-reply > li {
  border-radius: var(--radius-);
  border: solid 1px var(--border-color) !important;
  box-shadow: var(--box-color);
}

.tt-list-reply-comment .tt-wrap-cmt{
  border-radius: 0 0 var(--radius-) var(--radius-);
  border-top: none !important;
}

.tt-list-reply-comment .tt-item-reply{
  margin: 0 !important;
}

.tt-list-reply {
  display: flex;
  flex-direction: column-reverse;
}

.tt-item-reply .tt-list-reply-comment{
  border-top: solid 1px var(--border-color) !important;
}

.tt-wrap-cmt {
  padding: 10px;
}


.tt-item-reply .tt-list-reply-comment{
  margin: 0 !important;
}

.tt-box-thumb {
  margin-right: 10px !important;
}

.tt-list-reply{
  border-bottom: none !important;
}

.tt-btn_register:disabled{
  background: var(--point2-color)!important;
  border: solid 1px var(--point2-color)!important;
}

.tt-btn_register{
  background: var(--point1-color)!important;
  border: solid 1px var(--point1-color)!important;
}

.tt-btn_register:hover {
  background: var(--point2-color)!important;
  border: solid 1px var(--point2-color)!important;
  transition: all 0.3s ease-in-out; 
  color: var(--point1-color);
}

.tt-list-modify li {
  border-top: unset !important;
}

.tt-wrap-cmt .tt-list-modify{
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-)!important;
  top: 20px !important;
  right: 5px !important;
}

.tt-wrap-cmt .tt-list-modify a {
  color: var(--point1-color) !important;
}

.tt-wrap-cmt .tt-list-modify a:hover{
  background: var(--point2-color)!important;
}

.tt-wrap-cmt .tt_date{
  padding-top: 5px !important;
  color: var(--point2-color) !important;
}

.tt-box-textarea .tt-cmt[contenteditable='true']:empty::before{
  content: 'leave a comment' !important;
  color: var(--point2-color) !important;
}

.tt-box-textarea div {
  color: var(--point1-color) !important;
  font-family: 'Pretendard-Regular';
  font-size: var(--font-size) !important;
}

.tt-wrap-cmt .tt-link-user {
  color: var(--point1-color);
  font-size: var(--font-size);
}

.tt-wrap-cmt .tt-link-user:hover{
 color: var(--point2-color);
 transition: all 0.3s ease-in-out; 
}

.tt-comment-cont > .tt-area-reply > .tt-list-reply > li.tt-item-reply:has(p.tt_cmt_info) {
  order: 1;
}

.tt-item-reply .tt_cmt_info .tt_txt_g{
  font-size: var(--font-size) !important;
}

.tt-item-reply .tt_cmt_info{
  margin: 10px 10px 0 10px !important;
  font-family: inherit !important;
}

.tt-item-reply .tt_cmt_info .tt_txt_g{
  color: var(--point1-color)!important;
  font-weight: bold;
}

.tt-wrap-cmt .tt-wrap-link-comment{
  padding-top: 5px;
  padding-left: 5px !important;
}

.tt-link-comment .tt_txt_g{
  font-size: var(--font-size) !important;
  padding-top: 0 !important;
}

.tt-link-comment .tt_num_g, .tt-link-comment .tt_txt_g{
  color: var(--point1-color) !important;
  font-weight: bold;
}

.tt-area-write .tt-box-account input {
  border: none !important;
  color: var(--point2-color) !important;
}

.tt-area-write .tt-box-account input::placeholder{
  color: var(--point2-color) !important;
}

.tt-area-write .tt-box-account input {
  background: var(--point1-color) !important;
  border-radius: var(--radius-) !important;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless{
  border-radius: 5px;
}

div[data-ke-type='moreLess'].open .btn-toggle-moreless{
   border-radius: 5px 5px 0 0;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
  border: solid 1px var(--border-color); 
  font-size: var(--font-size) !important;
  padding: 5px;
  font-weight: bold;
  line-height: 24px !important;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless  {
  color: var(--point1-color);
}

div[data-ke-type='moreLess'] .btn-toggle-moreless:hover {
  border: solid 1px var(--point2-color); 
  color:  var(--point2-color);
} 

div[data-ke-type='moreLess'].open .moreless-content{
  margin:0; 
  padding:5px; 
  overflow: hidden;
  border-radius: 0 5px 5px 5px;
  border: solid 1px var(--border-color); 
}
 
 
/* notice */
#notice {
  padding: 10px;
  color: var(--text-color);
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  margin: 10px 0;
}

#notice:first-child {
  margin-top: 0;
}

#notice .container_postbtn{
  margin-top: 10px;
  display: none !important;
}

#notice .article-info {
  margin-bottom: 10px;
}

#notice .article-desc{
  color: var(--point1-color);
}


/* protected */
#protected .article-inner {
  padding: 10px;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

#protected .article-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
  min-height: 500px;
}

.protected-desc {
  color: var(--point1-color);
  font-weight: bold;
}

.protected-password {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px var(--border-color);
}

.protected-password input[type="password"] {
  height: 30px; 
  border: none; 
  font-family: 'Pretendard-Regular'; 
  background: none; 
  border-radius: var(--radius-); 
  padding: 3px; 
  width: calc(100% - 30px);
  color: var(--point1-color);
}

.protected-password input[type="password"]::placeholder{
  color: var(--point2-color);
}

.protected-password input[type="button"] {
  height: 30px; 
  border:none; 
  width: auto;
  font-family: 'Pretendard-Regular';
  background: none; 
  border-radius: var(--radius-); 
  padding: 3px; 
  font-weight: bold;
  color: var(--point1-color);
}
 
.protected-password input[type="button"]:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}


/* tag */
#tag {
 padding-bottom: 10px;
}

#tag .article-title {
  padding: 10px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

#tag .article-title svg{
  margin-left: 5px;
}

.tag-wrap a:before{
  content: "#"; 
  font-weight:bold; 
  margin-right: 1px;
} 

.tag-wrap{  
  margin-top: 10px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.tag-wrap a{  
  padding: 5px;
}

/* postbtn 구독버튼 */
.postbtn a {
  position: relative;
  font-size: 13px;
  margin-left: 3px;
}

.postbtn a:after{
  content:"\f013"; 
  position: absolute;
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  left: 0;
  background: #fff;
  z-index: 9;
}

.btn_menu_toolbar.btn_subscription {
  border-radius: 20px;
  color: var(--point1-color);
  margin-left: 3px;
  font-size: 13px;
}
 
.btn_menu_toolbar.btn_subscription::before {
  float: left;
  color: var(--point1-color);
}

.btn_menu_toolbar.btn_subscription:hover {
  color: var(--point2-color);
  transition: all 0.3s ease-in-out; 
} 

#article .txt_state {
  font-size: 0;
  display: none;
  width: 0;
  height: 0;
  font-style: inherit;
  margin: 0;
  font-weight: bold;
  text-align: center;
} 


/* top-btn */
#top {
  display: flex;
  position: fixed;  
  z-index: 99;
  bottom: 35px; 
  right: 35px; 
  flex-direction: row; 
  justify-content: center; 
}

.top{ 
  border-radius: var(--radius-); 
  margin-right: 10px;
}

.top a {
  display: flex; 
  color: #fff; 
  text-align: center; 
  border-radius: 50%;
  align-items: center; 
  justify-content: center; 
  width: 30px; 
  height: 30px;
  background: var(--point1-color);
}

.top a:hover {
  background:var(--point2-color); 
  color:var(--point1-color); 
  transition: all 0.3s ease; 
  cursor: pointer;
}


/* 반응형 */ 
@media (max-width:800px){
  #darkmode {
    position: relative;
    width: 100%;
    right: unset;
    top: unset;
    padding: 0;
    margin-bottom: 10px;
  }
  #main {
    height: auto !important;
    width: 96% !important;
    margin: 0 auto 15px auto;
  }
  #paging {
    margin: 0 5px;
  }
  button.theme-toggle {
    width: 100%;
    justify-content: flex-end;
  }
  #whole {
    width: 100%;
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
  } 
  #sidebar1 {
    width: 98%;
    height: auto;
  }
  .side-inner {
    width: 100%;
    position: relative;
    height: auto;
    top: unset;
  }
  #container {
    width: 100%;
    height: auto;
  }
  #footer {
    display: none;
  }
  .swiper.mySwiper {
    max-height: 320px;
  }  
  .menu, .cate {
  display: none;
  }
  .list-summary .cover-item .thumbnail, #list-summary .list-item .thumbnail{
    height: 157px;
  }
  /* mobile menu*/
  #mobile-menu {
    display: flex;
    flex-direction: column;
    background: var(--article-color);
    width: 100%;
    border: solid 1px var(--border-color);
    border-radius: var(--radius-);
    box-shadow: var(--box-color);
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .m-menu {
    margin-bottom: 10px;
  }
  .m-menu, .m-cate {
    display: flex;
  }
  #mobile-menu .proimg {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-bottom: 10px;
    border-radius: var(--radius-);
    border: solid 1px var(--border-color);
  }
  #mobile-menu .proimg img {
    border-radius: var(--radius-);
  }
  .back-title {
    margin-top: 5px;
  }
  .m-menu li, .m-cate li
  {
    margin-right: 5px;
    font-weight: bold;
  }
  .pop-inner {
    width: 95% !important;
  }
  .back-profile { 
    flex-direction: column;
  }
  .back-proimg img {
    width: 100%;
  }
  .back-desc {
    max-height: 190px;
    overflow-y: auto;
    height: unset;
  }
  .list-memo .memo-desc, #list-memo .memo-desc {
    line-height: unset;
  }
} 


/* scrollbar & drag */
::-webkit-scrollbar {
  width: 5px; display: none;
}

::-webkit-scrollbar-track {
  background-color: var(--scrollbg-color); 
}

::-webkit-scrollbar-thumb {
  border-radius: 0; 
  background-color: var(--scroll-color);
}

::-webkit-scrollbar-button {
  display: none; 
}

::selection{
  color:var(--dragtext-color); 
  background:var(--drag-color);
}


/* copyright 삭제는 옵션 구매 후 해주세요! */
#copyright a{ 
  position: fixed;
  left: 10px; 
  bottom: 10px; 
  display: flex;
  flex-direction: row; 
  align-items: center;
  color: var(--point1-color);
  line-height: 1;
}

 .copyright-1{ 
  display: flex;
  align-items: center;
  position: relative; 
  font-size: 11.5px; 
  font-weight: bold; 
  width: auto; z-index: 999;
}

.copyright-2{
  opacity:0; 
  margin-left: 3px; 
  transition: all 1s;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

 .copyright-1:hover + .copyright-2{
  opacity:1; 
  color: var(--point1-color);
  transition: all 0.3s ease;
}
 

/*youtube*/
.youtube{
  position:relative; 
  width:100%; 
  padding-bottom:56.25%;
}

.youtube iframe{
  position:absolute; 
  width:100%; 
  height:100%;}

.video-container {
  position: relative; 
  width:100%; 
  padding-bottom: 56.25%;
  padding-top: 0; 
  height: 0; 
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
 position: absolute; 
 top: 0; 
 left: 0; 
 width: 100%; 
 height: 100%;
}

/*skin*/

/* 더보기 버튼 꾸미기 */
.btn-toggle-moreless, .btn_more, .btn_less {
    background: #FFC0CB; /*버튼 배경색*/
    border-radius: 9999px;
    box-shadow: rgba(37, 44, 97, .15) 0 4px 11px 0, rgba(93, 100, 148, .2) 0 1px 3px 0;
}
.btn-toggle-moreless, .btn_more, .btn_less {
    z-index: 1;
    position: relative;
    display: inline-block;
    padding: 5px 20px; /*버튼 안쪽 여백*/
    border-radius: 50px; /*버튼 모서리 라운드*/
    margin-top: 5px;
    color: #fff!important; /*버튼의 더보기 글색*/
    font-size: 14px!important; /*버튼의 글크기*/
}
div[data-ke-type='moreLess'] {
    position:relative;
}
div[data-ke-type='moreLess']::before {
    content: '';
    position: absolute;
    width: 100%;
    border-bottom: 1px dashed #ddd; /*박스 상단 라인*/
    margin-top: 22.5px; /*라인 높이*/
}
.moreless-content {
    padding: 15px 5px; /*박스 내부 여백*/
    border-bottom: 1px dashed #ddd; /*박스 하단 라인*/
}
/* 더보기 버튼 꾸미기 끝 */
