@charset "UTF-8";
:root
{
	--size-sideWidth: 250px;
	--radius-roundBox: 15px;

	--color-point1: #393939; /* 새로고침, 이모티콘, 배너등록, 검색 */
	--color-point2: #a2b2c7; /* 글작성, 관리자, 해시태그 */
	--color-point3: #656565; /* 파일첨부, 입력 */
	--color-border: #969696; /* 테두리 */
	--color-background: #f3f3f3; /* 테두리가 있는 박스의 배경색 */

	--color-black: #000000; /* 글자색 등에 사용된 검은색 */
	--color-white: #efefef; /* 글자색 등에 사용된 흰색 */
}

*
{
	color: var(--color-black);
}

.skin-header
{
	box-sizing: border-box;
	margin-bottom:10px;
}
.skin-btn
{
	display: inline-block;
	/* padding: 8px 20px; */
	padding: 8px;
	width:60px;
	text-align:center;
	border-radius:5px;
	/*margin-right:15px;*/
	margin: 7px;
	color: var(--color-white);
	background-color: var(--color-point1);
	font-family: 'Freesentation5';
}

.skin-btn-point
{
	color: var(--color-black);
	background-color: var(--color-point2);
}

.flex, .flex > *
{
	display: flex;
}

.skin-container
{
	display: flex;
	box-sizing: border-box;
}

.skin-side
{
	box-sizing: border-box;
	width: var(--size-sideWidth);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mobile-menu-btns
{
	display:none !important;
}
@media (max-width: 1000px) {
	.mobile-menu
	{
		position: fixed;
		/*left: calc((var(--size-sideWidth) + 50px) * -1);*/
		top: 0px;
		height:100%;
		z-index:99;
		background-color: rgba(255,255,255,.8);
		padding: 10px 25px;
		width: calc(var(--size-sideWidth));
		transform: translateX(calc(-100% - 10px));
		transition: transform 0.3s ease;
		border-right: 2px solid var(--color-border);
	}
	.mobile-menu::after
	{
		content: ">>";
		position: absolute;
		top: 0;
		right: -40px;
		width: 40px;
		height: 40px;
		background: var(--color-point1);
		color: var(--color-white);
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.mobile-menu.open
	{
		transform: translateX(0);
		/*left: 0px;*/
	}
	.mobile-menu.open::after
	{
		content: "X";
	}

	.skin-side
	{
		height: 100%;
		overflow-y: auto;
	}
	.skin-side::-webkit-scrollbar
	{
		display: none;
	}

	.mobile-menu-btns
	{
		display: block !important;
	}
	.mobile-menu-btns > .skin-btn
	{
		box-sizing:border-box;
		width:100%;
		margin: 2px 0px;
	}

	.skin-header
	{
		display: none;
	}
}
.skin-side > div
{
	box-sizing: border-box;
	display: flex;
	margin-bottom:10px;
	width:100%;
}
.skin-main
{
	box-sizing: border-box;
	width: calc(100% - var(--size-sideWidth));
	padding: 0px;
	margin-left:10px;
}

@media (max-width: 1000px) {
	.skin-main
	{
		width: 100%;
		margin-left:0px;
	}
}

.skin-border
{
	border: 2px solid var(--color-border);
	border-radius: 15px;
}

.h-center
{
	text-align: center;
	justify-content: center;
}
.v-center
{
	align-items: center;
}

.skin-roundBox
{
	border-radius: var(--radius-roundBox);
	height: calc(var(--radius-roundBox)*2 + 3px) !important;
	padding: 0px;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.skin-roundBox.point1, .skin-roundBox.point1 *
{
	background-color: var(--color-point1);
	color: var(--color-white);
}

.skin-roundBox.point2, .skin-roundBox.point2 *
{
	background-color: var(--color-white);
	color: var(--color-black);
}

.skin-roundBox.point3, .skin-roundBox.point3 *
{
	background-color: var(--color-point2);
	color: var(--color-white);
}

/* 셀렉트박스 화살표를 예쁘게 만들어보자... */
select {
  appearance: none;
  padding-right:10px !important;
}

.selectArrow
{
	position: relative;
	display: inline-block;
}

.hashbox
{
	padding: 0px 10px;
	flex-grow: 1;
    min-width: max-content;
}
.selectArrow::after
{
  content: "▼";
  position: absolute;
  right: 15px;
  top: 48%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-white);
}

.modify_area			{ display: none !important; position: relative; }
.modify_area textarea	{ display: block; width: 100%; min-height: 100px; padding: 10px; }
.modify_area button	{ width: 60px; }

/* 캘린더 */
.skin-calendar-wrapper {
  background: var(--color-background);
  padding: 20px;
}

.calendar {

}

.month-date {
  width: 14%;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-sizing: border-box;
  position: relative;
}

a.month-date {
  color: unset;
}

.month-other {
  opacity: 0.7;
}

.year-text {
  text-align: center;
  font-size:12px;
}

.month-text {
  font-size: 24px;
}

.month-date.month-title {
  font-weight: bold;
}

.month-box {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

/* 캘린더 강조 표시 */

.month-this.today {
  background-repeat: no-repeat;
  background-position: center;
  font-weight: bold;

  color: var(--skin-point-color);
}

.month-date.selected {
  font-weight: bold;
  border-bottom: 3px double var(--skin-point-color);
}

.month-date.isdone::after {
  content: '♥';
  position: absolute;
  font-size: 10px;
  top: calc(1em + 6px);
}

.month-date.selected.isdone::after {
  content: '';
}

.item-comment-box
{
	display: block !important;
}
.item-comment
{
	margin-bottom: 10px;
}

.date
{
	font-size: 11px;
	color: var(--color-border);
}