@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;
}


/* dark */
/* dark theme color */
body {
  background: var(--body-color);
  color: var(--point1-color);
}

.dark-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.dark-btn button {
  display: flex;
  place-content: center;
  padding: 5px;
  border-radius: var(--radius-);
  align-items: center;
  transition: 200ms;
  background: var(--point1-color);
  cursor: pointer;
}

.dark-btn button svg{
 fill: var(--point2-color);
 stroke: var(--point2-color);
}

.dark .dark-btn button {
  background: var(--article-color);  
}

.dark-btn button:hover {
  background: var(--point2-color);
  transition: all 0.3s ease;
}

.dark-btn button:hover svg {
  fill: var(--point1-color);
  stroke: var(--point1-color);
  transition: all 0.3s ease;
}

.spin-left, .spin-right {
  animation: spin 575ms cubic-bezier(0.075, 0.82, 0.17, 1.135);
}

@keyframes spin {
  0% {
    transform: scale(0) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(720deg);
  }
}

@keyframes spin {
  0% {
    transform: scale(0) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-720deg);
  }
}


/* 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;
}


/* 폰트사이즈 변경 
  font-size: 숫자px / 
 글자간격 조절 line-height 숫자px 조절
*/
html {
  background: var(--body-color);
  --radius-: 5px;
  --font-size: 13px;
  --line-height: 15px;
}  

/* layout */
#whole {
  font-size: var(--font-size);
  line-height: 15px; 
  width: 100%;
  margin: 0 auto;
  position: relative;
}


/* header */
#header {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  background: var(--point1-color);
}

.header {
  background-size: cover;
  background-position: center;
  height: 100%;
}


/* head menu */
#head-item{
  width: 100%;
  background: var(--article-color);
  position: sticky;
  top: 0;
  height: 60px;
  box-shadow: var(--box-color);
  border-bottom: solid 1px var(--point1-color);
  z-index: 2;
}


.head-inner {
  padding: 0 30px;
  height: 60px;
  position: relative;
  margin: 0 auto;
}

.head-info{
  float: left;
  position: absolute;
  top: 0;
  left: 20px;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.head-link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width-width);
  margin: 0 auto;
  height: 100%;
  position: relative;
  left: 45px;
}

.head-link a{
  font-weight: bold;
}

.head-menu {
  display: flex;
  align-items: center;
}

.head-cate {
  display: flex;
  align-items: center;
}

.head-cate > ul > li > a, .head-cate .sub_category_list, .head-cate .c_cnt,
.head-cate .sub_item {
  display: none;
}

.head-cate .category_list {
  display: flex;
}

.head-menu li, .head-cate a {
  margin-right: 10px;
}

.head-info a {
  display: flex;
  align-items: center;
}

.head-img {
  position: relative;
  margin-right: 5px;  
  border: solid 1px var(--border-color);
  border-radius: 50%;
}

.head-img img {
  width: 40px; 
  height: 40px;
  border-radius: 50%;
}

.head-text {
  display: flex;
  flex-direction: column;
}

.head-title {
  font-weight: bold;
}

.head-blogger {
  color: var(--point2-color);
  font-size: 11.5px;
}

.head-info a:hover .head-title {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

.head-info a:hover .head-blogger {
  color: var(--point1-color);
  transition: all 0.3s ease;
}

/* search */
.search {
  float: right;
  overflow: hidden;
  box-shadow: var(--shadow-color);
  display: flex;
  width: 120px;
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 20px;
}

.search-inner {
  border-bottom: solid 1px var(--border-color);
  width: 100%;
  display: flex;
  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;
}

.sub_category_list > li > a:before{
  content:"-";
}

.c_cnt {
  color: var(--point2-color);
  font-weight: bold;
}

/* container */
#container {
  width: calc(var(--width-width) + 540px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 15px auto; 
}

.sidebar {
  width: 300px;  
}

.sidebar-inner {
  width: 100%;
  top: 100px;
  position: sticky;
}

.side-img {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-);
  margin: 30px 0 15px 0;
  overflow: hidden;
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
}

.side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.side-info{
  margin: 15px 0;
}

.side-title{
  letter-spacing: 1px;
  text-align: left;
  padding-left: 20px;
  margin-bottom: 10px;
}

.side-title::before{
  content:"\f004";
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin: 1px 10px 0 -20px;
  position: absolute;
}

.side-desc {
  padding-left: 10px;
  border-left: solid 1px var(--border-color);
  margin: 0 0 0 5px;
  line-height: 1.7;
}

.side-cate {
  background: #fff;
  padding: 10px;
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
  background: var(--article-color);
}

.side-cate .tt_category{
  line-height: 2;
}

.side-cate .sub_category_list{
  display: none;
}

.side-cate .cate_li{
  display: flex; 
  align-items: center;
}

.sub_item {
  margin-left: 5px;
  cursor: pointer;
}

.sub_item:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

.bgm {
  margin-bottom: 5px;
  margin-right: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bgm button{
  color: var(--point1-color);
  cursor: pointer;
}

.bgm button:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

.bgm-link {
  display: flex;
  align-items: center;
}

.bgm-link li a{
  display: block;
}

.bgm-link li a:first-child {
  margin-right: 3px;
}

/* sidebar2 */
.sidebar2 {
  width: 200px;
}
/* banner */
.sidebar-banner {
  text-align: center;
  padding: 10px;
  margin: 15px 0;
  background: #fff;
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
  background: var(--article-color);
} 


/* btn */
.btn-banner {
  font-weight: 600;
  background: var(--point1-color);
  color: var(--point2-color);
  border-radius: var(--radius-);
  overflow: hidden;
  transition: 0.3s;
  padding: 5px;
  cursor: pointer;
}

.btn-banner:hover {
  background: var(--point2-color);
  color: var(--point1-color);
  animation-play-state: paused;
  transition: all 0.3s ease;
}

.btn-banner span {
  display: block;
  padding: 0 20px;
  -webkit-animation: move-left 3s linear infinite;
  animation: move-left 3s linear infinite;
}

.btn-banner span::after {
  position: absolute;
  content: attr(data-text);
  top: 0;
  left: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}


@-webkit-keyframes move-left {
  to {
    transform: translateX(-100%);
  }
}
@keyframes move-left {
  to {
    transform: translateX(-100%);
  }
}
/* banner img */
.my-banner {
  margin: 10px 0;
  display: grid;
  position: relative;
  gap: 5px;
  justify-items: center;  
}

.my-banner img {
  max-width: 100%;
}

.banner-list {
  display: none;
  position: relative;
  padding-bottom: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.banner-list img {
  max-width: 100%;
  text-align: center;
}

.banner-list img:not(:first-child) {
  margin-top: 10px;
}



/* side item */
.side-item {
	margin: 30px 0 15px 0;
	width: 100%;
	background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--point1-color);
  background: var(--article-color);
  overflow: hidden;
}

.side-tab {
	width: 100%;
}

.side-tab ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
		
.side-tab li {
	float: left;
  padding: 3px;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;		
}

.side-item1, .side-item2, .side-item3 {
  width: calc((100%) / 3);
}
		
.side-item .selected {
	background: var(--point1-color);
  color: var(--point2-color);
	border: none;
}

.noSelected {
	background: var(--point2-color); 
  color: var(--point1-color);
	border: none;
	cursor: pointer;
	-webkit-transition: background .4s ease-out;
	-moz-transition: background .4s ease-out;
	-o-transition: background .4s ease-out;
	-ms-transition: background .4s ease-out;
	transition: background .4s ease-out;
}

.tab-containers {
	height: 300px;
	margin-top: 5px;				
}
		
.section {
	height: 100px;
}

.right-section {
  width: 100%;
	float: left;
  padding: 5px 5px 0 5px;
  max-height: 610px;
  overflow-y: auto;
}

.section-comments{
	padding: 5px 15px 0 25px;
}

.sidetab.hidden {  
  display: none;
}

.noSelected:hover {
	background: var(--point1-color);
  color: var(--point2-color);
  transition: all 0.3s ease;
}

/* section item */
.section .section-wrap {
  width: 100%;
  margin: 5px 0;
  position: relative;
}

.section .thumbnail {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-);
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.section-wrap .section-item:hover img {
	opacity: .5;
}

.section .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;
}

.section .summary {
  display: flex;
  width: 100%;
  padding: 5px;
  flex-direction: column;
}

.section .summary-title {
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.section .summary-desc {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}

.section .summary-date {
  color: var(--point2-color);
  text-align: center;
  margin-top: 5px;
}


/* calendar */
#side-item3 .right-section {
  padding: 5px;
}

.calendar {
  font-size: 11.5px;
  margin-bottom: 5px;
}

.calendar .tt-calendar .cal_current_week {
  background: var(--point2-color);
}

.calendar .tt-calendar .cal_week2, .calendar .tt-calendar .cal_day_sunday {
  color:red;
}

.calendar .tt-calendar td a {display:inline-block; 
  border-bottom:solid 1px var(--point1-color); 
  color:var(--point1-color);
  font-weight: bold; 
}

.calendar .tt-calendar th { 
  font-weight:normal;
}

.calendar .tt-calendar .cal_day4 {
  background:var(--point2-color);
  color:#fff;
}

.calendar .tt-calendar th, .calendar .tt-calendar td {
  padding: 3px; 
  text-align:center;
}

.cal_month .PrevMonthBtn::before,
.cal_month .NextMonthBtn::before,
.cal_month .Month {
  font-weight: 600;
  margin: 3px;
}

.cal_month .PrevMonthBtn::before {
  content: '\f0d9';
  font-family: 'Font Awesome 5 Free';
}

.cal_month .NextMonthBtn::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
}

.calendar a:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

.calendar .tt-calendar td a:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
  border-bottom: solid 1px var(--point2-color);
}

/* d-day */
.d-day {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  padding: 5px;
  background: var(--point1-color);
  border-radius: var(--radius-);
}

.d-day {
  color: #fff;
  text-align: center;
}

.d-title {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 5px;
}

.d-desc {
  display: flex;
  justify-content: center;
}



/* wrap */
.content {
  margin: 30px 0;
  width: var(--width-width); 
  height: auto;
}

.wrap {
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
  overflow-x: hidden;
  overflow-y: auto;
}


/* paging */
#paging{
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
}

.num{
  margin: 0 5px;
}

.p-prev a, .p-next{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-);
}

#paging .selected{
  color: var(--point2-color);
  font-weight: bold;
}




/* list */
.empty {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 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, .list-container {
 padding: 0;
}

#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 {
  padding: 10px;
  text-align: center;
  color: var(--point1-color);
  font-weight: bold;
  border-bottom: solid 1px var(--border-color);
  border-top: solid 1px var(--border-color);
  background: var(--point2-color);
}

#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;
}


.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-wrap a,
#list-basic .list-item{
  display: block;
  position: relative;
  padding: 10px;
  width: 100%;
}

.list-basic .cover-wrap a:after,
#list-basic .list-item:after {
background: none repeat scroll 0px 0px transparent;
content: "";
display: block;
height: 2px;
margin: auto;
transition: width 0.5s ease 0s, background-color 0.5s ease 0s;
width: 0;
}

.list-basic .cover-wrap a:hover:after,
#list-basic .list-item:hover:after {
background:none repeat scroll 0 0 var(--point2-color);
width: 100%;
}

.list-basic .cover-item:hover,
#list-basic .list-item:hover {
  letter-spacing: 2px;
  transition: all 0.3s ease;
}


/* 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 .cover-inner{
  padding: 0;
}

#list-memo .list-inner{
  height: 100%;
  display: flex;
  padding: 10px;
  flex-wrap: wrap;
}

.list-memo .memo,
#list-memo .memo {
  height: 120px;
  position: relative;
}

.list-memo .memo-info,
#list-memo .memo-info {
  display: flex;
  align-items: center;
  border-bottom: solid 1px var(--border-color);
  padding: 5px;
}

#list-memo .thumbnail {
  order: 2;
  width: 100%;
  height: calc(100% - 120px);
  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;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.list-memo .memo-user,
#list-memo .memo-user {
  position: relative;
  width: 30px;
}

.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: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  margin-left: 3px;
  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: 70px;
  text-align: right;
}

.list-memo .memo-desc,
#list-memo .memo-desc {
  padding: 5px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;  
}

#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{  
  width: calc(100% - 20px);
  margin: 10px;
  position: relative;
  overflow: hidden;
}

.list-memo .cover-wrap:first-child{
  margin-top: 10px;
}

#list-memo .list-wrap{  
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

#list-memo .list-wrap:nth-last-child(1)
{
  margin-bottom: 0;
}

.list-memo .cover-item, 
#list-memo .list-item{
  display: block;
  flex-direction: column;
  position: relative;
  border: solid 1px var(--border-color);
  border-radius: var(--radius-);
}


.list-memo .cover-item:hover,
#list-memo .list-item:hover {
  transition: all 0.3s ease;
  border: solid 1px var(--point2-color);
}


#list-memo .memo-title {
  font-weight: bold;
}

#list-memo .memo-title span {
  color: var(--point2-color);  
  margin-top: 3px;
  font-weight: normal;
}


/* 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 .cover-inner,
#list-gallery .list-inner{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px 0 10px;
}

.list-gallery .cover-wrap{
  float: left;
  width: calc((100% - 10px) / 2);
  margin: 0 10px 10px 0;
  position: relative;
}

#list-gallery .list-wrap{
  float: left;
  width: calc((100% - 10px) / 2);
  margin: 0 10px 10px 0;
  position: relative;
}

.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, 
#list-gallery .thumbnail,
#article-related .thumbnail {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-);
}

#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(--artice-color);
}  

#list-gallery .thumbnail-info,
#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-info,
#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 {
  color: var(--point1-color);
  text-align: right;
  width: 100%;
  font-weight: normal;
  display: flex;
  flex-direction: column;
}


#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); 
}

.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;
  bottom: 12px;
  right: 10px;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}


 #list-gallery .list-lock .thumbnail:before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  position: absolute; 
  display: flex; 
  justify-content: center; 
  align-items: center;
  bottom: 10px;
  right: 10px;
  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,
#list-summary .list-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px 0 10px;
}

.list-summary .cover-wrap,
#list-summary .list-wrap{
  float: left;
  width: calc((100% - 10px) / 2);
  margin: 0 10px 10px 0;
  position: relative;
}

.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;
  border-radius: var(--radius-);
  padding: 5px;
  background: var(--boxbg-color);
  border: solid 1px var(--border-color);
}

.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;
  height: 130px;
  padding: 5px 5px 0 5px;
  flex-direction: column;
  justify-content: space-between;
}

.list-summary .summary-info,
#list-summary .summary-info{
  order: 1;
  display: flex;
  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 {
  order: 2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;  
  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;
  background: var(--point1-color);
}


/* cover - notice */
.notice .cover-inner {
  padding: 10px;
  text-align: center;
}

.notice .notice-desc {
  margin-top: 10px;
}

.notice .notice-img {
  position: relative; 
  width: 100%; 
  text-align: center;
}

.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: 500px;
}

.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%;
}

.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);
  background: var(--article-color);
}

#article .btn_menu_toolbar{
  display: none !important;
}

#article .article-wrap {
  border-radius: var(--radius-);
}

.article-tag{
  display: none;
  border: solid 1px var(--border-color);
  border-radius: var(--radius-);
  padding: 10px;
  margin: 5px;
}

.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;
  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: 5px;
  justify-content: space-between;
}

.btn-item {
  display: flex;
}

.comment-btn, .related-btn, .tag-btn {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: var(--radius-);
  color: var(--point1-color);
  font-weight: bold;
  border: solid 1px var(--border-color);
}

.comment-btn, .tag-btn{
  margin-right: 5px;
}

.container_postbtn .postbtn_like{
  padding: 0 !important;
  border-radius: var(--radius-) !important;
  border: solid 1px var(--border-color) !important;
  color: var(--point1-color);
}

.container_postbtn{
  padding: 0 !important;
}

.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;
  margin: 5px;
}

#article-related .list-inner {
  border: solid 1px var(--border-color);
  display: flex;
  flex-wrap: wrap;
  border-radius: var(--radius-);
  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: 5px !important;
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-);
  min-height: 120px !important;
  justify-content: center !important;
  align-items: center;
}

.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;
  padding: 5px;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

#guestbook {
  padding: 10px 5px;
}

.tt-wrap-cmt .tt_desc, .tt-wrap-cmt .tt-link-user{
  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; 
}

.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: 10px !important;
  margin-bottom: 10px;
  border: solid 1px var(--border-color) !important; 
  border-radius: var(--radius-);
}

.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-);
  overflow: hidden;
  border: solid 1px var(--border-color) !important;
}

.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:hover{
 color: var(--point1-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;
  line-height: 25px !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: 5px;
}

#notice .container_postbtn{
  margin-top: 10px;
  display: none !important;
}

#notice .article-info {
  background: var(--boxbg-color);
  border-radius: var(--radius-) var(--radius-) 0 0;
  margin-bottom: 0;
  padding: 10px;
}

#notice .article-desc{
  background: var(--boxbg-color);
  border-radius: 0 0 var(--radius-) var(--radius-);
  padding: 10px;
}


/* protected */
#protected .article-inner {
  padding: 10px;
}

#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: center;
  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; 
  font-family: 'Pretendard-Regular';
  background: none; 
  border-radius: var(--radius-); 
  padding: 3px; 
  font-weight: bold;
  color: var(--point1-color);
}


/* tag */
#tag {
  background: var(--boxbg-color);
  border-radius: var(--radius-);
  margin: 10px;
}

#tag .article-title {
  padding: 10px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#tag .article-title svg{
  margin-left: 5px;
}

.tag-wrap a:before{
  content: "#"; 
  font-weight:bold; 
  margin-right: 1px;
} 

.tag-wrap{  
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.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;
} 


/* 반응형 */ 
@media (max-width:800px){
#header{ 
 width: 100%;
 height: 400px;
 margin: 0 auto;
}

.head-link{
  display: none;
}  

#whole {
  width: 100%;
}

#container{
  width: 98% !important;
  display: flex;
  flex-direction: column;
}

.sidebar {
  width: 100%;
}

.side-img{
  margin: 15px 0;
}

.content {
  margin: 15px 0 0 0;
  width: 100%;
  height: auto;
  overflow-y: auto;
}

.sidebar2 {
  width: 100%;
}
 
.side-item {
  margin:  15px 0;
}

#side-item1 .thumbnail {
  height: 200px;
}

#side-item2 .thumbnail {
  height: auto;
}

#head-item {
  height: auto !important;
  top: 0;
}

.head-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto !important;
  padding: 15px;
}

.head-info {
 float: unset;
 position: relative;
 top: unset;
 left: unset;
}

.search {
  float: unset;
  position: relative;
  right: unset;
  top: unset;
  width: unset;
  margin-top: 15px;
}

.swiper.mySwiper{
  max-height: 400px;
}

.banner-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#side-item2 .thumbnail img {
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
  object-fit: cover;
}

.right-section{
  max-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%;}

/*skin*/
