#sidebar section {
	margin:30px 0;
}
/*--------------------------------------
  title
--------------------------------------*/
#sidebar .title {
	font-size: 30px;
	font-weight: bold;
}
/*--------------------------------------
  searchbox
--------------------------------------*/
.searchbox {
	width: 100%;
	margin-bottom: 24px;
}
.search_container {
	display: flex;
	gap: 10px;
	width: 100%;
}
#sbox {
	flex: 1;
	padding: 12px 14px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 15px;
	outline: none;
	transition: 0.2s;
}
#sbox:focus {
	border-color: #888;
	box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.search_container input[type="submit"] {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	padding: 12px 18px;
	border-radius: 8px;
	border: 1px solid #bbb;
	background: #8a8a8a;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
	color: #fff;
}
.search_container input[type="submit"]:hover {
	background: #eee;
	border-color: #999;
	color: #8a8a8a;
}
/*--------------------------------------
  ranking
--------------------------------------*/
#sidebar .ranking {
	margin:0 0 50px 0;
	}
#sidebar .ranking .post a {
	display: flex;
}
#sidebar .ranking .post {
	width: 100%;
	padding: 0 10px;
	border-bottom: solid #EEEEEF 2px;
	margin: 0 0 10px 0;
}
#sidebar .ranking .post .title {
	font-size: .85rem;
	font-weight: normal;
	line-height: 20px;
}
#sidebar .ranking-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
	margin: 0 2% 0 0;
}
#sidebar .ranking .post:nth-child(1) .ranking-number {
	background: #e60012;
}
#sidebar .ranking .post:nth-child(2) .ranking-number {
	background: #f39800;
}
#sidebar .ranking .post:nth-child(3) .ranking-number {
	background: #ffd900;
}
#sidebar .ranking .post:nth-child(4) .ranking-number {
	background: #8fc31f;
}
#sidebar .ranking .post:nth-child(5) .ranking-number {
	background: #009944;
}
#sidebar .ranking .post:nth-child(6) .ranking-number {
	background: #00a0e9;
}
#sidebar .ranking .post:nth-child(7) .ranking-number {
	background: #0068b7;
}
#sidebar .ranking .post:nth-child(8) .ranking-number {
	background: #1d2088;
}
#sidebar .ranking .post:nth-child(9) .ranking-number {
	background: #920783;
}
#sidebar .ranking .post:nth-child(10) .ranking-number {
	background: #e4007f;
}
/*--------------------------------------
  toc
--------------------------------------*/
.toc_container {
	padding: 30px 20px 10px 20px;
	border: solid #8a8a8a 1px;
	background: #F1F3F9;
	margin: 10px 0;
	max-height: 450px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 6px;
	scrollbar-gutter: stable;
}
.toc_container li {
	margin:10px 0;
	font-size:.85rem;
}
.sticky {
	position: sticky;
	top: 30px;
	z-index: 100;
}
