input[type="text"], input[type="search"] {
	outline: none;
}
.dialog {
	max-width: calc(100% - 32px);
	min-width: 25%;
	max-height: calc(100% - 40px);
	box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
#dialog {
	position: absolute;
	background: #f2f2f2;
	display: none;
	top: 20px;
}
#dialog.max {
	width: calc(100% - 40px);
}
#dialog > .cover {
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 210;
	background: rgba(0, 0, 0, 0.25);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#dialog.disabled .cover {
	display: flex;
}
.dialog > main {
	padding: 16px;
	overflow: scroll;
	height: auto;
}
.dialog > header {
	height: 24px;
	background: rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: space-between;
	user-select: none;
}
.dialog > header > h4 {
	padding-left: 8px;
	color: #333;
	font-size: 12px;
	font-weight: normal;
}
.dialog > header > a {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
}
.dialog > header > a:hover {
	background: rgba(0, 0, 0, 0.1);
}
.dialog input[type='button'] {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	font-size: 12px;
	padding: 4px 8px;
	text-align: center;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #eee;
	min-width: 80px;
	cursor: pointer;
	user-select: none;
}
.dialog input[type='button']:hover {
	background: #e2e2e2;
}
.dialog input[type="button"]:disabled {
	cursor: default;
}
.dialog input[type="button"]:disabled:hover {
	background: #eee;
}
#box-setting > nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 8px;
}
#box-setting > nav > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	padding: 0 8px;
	color: #666;
}
#box-setting > nav > a.focus {
	background: #d07457;
	color: #fff;
}
#main {
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 100%;
	border-spacing: 4px;
	border-collapse: separate;
	padding-bottom: 100px;
}
#main > li {
	display: table-cell;
	vertical-align: top;
	width: 100%;
}
#main > li.dragging {
	background: rgba(100, 100, 100, 0.75);
	padding: 8px;
}
#main > li > .box {
	margin-bottom: 4px;
}
#main > li > .box:not(#controll-panel) {
	border-radius: 4px;
	overflow: hidden;
}
#main > li > .box.dragging {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
#main > li.dragging > .box:not(.dragging) {
	opacity: 0.5;
}
#main > li > .box > header.toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 16px;
	padding-left: 4px;
	user-select: none;
	cursor: move;
}
#main > li > .box[data-show-toolbar="0"] > header.toolbar {
	display: none;
}
#main > li > .box > header.toolbar > h3 {
	flex-grow: 1;
	flex-shrink: 1;
	margin-right: 4px;
	font-size: 10px;
	font-weight: normal;
}
#main > li > .box > header.toolbar > nav {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
}
#main > li > .box > header.toolbar > nav > a {
	font-size: 12px;
	width: 14px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
#main > li > .box > header.toolbar > nav > a > span {
	font-size: 12px;
}
#main > li > .box[data-title-color='dark'] > header.toolbar > h3 {
	color: rgba(0, 0, 0, 0.8);
}
#main > li > .box[data-title-color='light'] > header.toolbar > h3 {
	color: rgba(255, 255, 255, 0.9);
}
#main > li > .box[data-title-color='dark'] > header.toolbar > nav > a > span {
	color: rgba(0, 0, 0, 0.5);
}
#main > li > .box[data-title-color='light'] > header.toolbar > nav > a > span {
	color: rgba(255, 255, 255, 0.75);
}
#main > li > .box[data-title-color='dark'] > header.toolbar > nav > a:not(.focus):hover > span {
	color: rgba(0, 0, 0, 1);
}
#main > li > .box[data-title-color='light'] > header.toolbar > nav > a:not(.focus):hover > span {
	color: rgba(255, 255, 255, 1);
}
#main > li > .box > header.toolbar > nav > a.focus > span {
	animation: 0.75s linear 0s infinite box-setting;
}
#main > li > .box > header.toolbar > nav > a.focus > span:hover {
	animation: 5s linear 0s infinite box-setting;
}
@keyframes box-setting {
	from {transform:rotate(0);}
	to   {transform:rotate(360deg);}
}
#main > li > .box > .setting {
	background: #cacaca;
	display: none;
}
#main > li > .box > .setting > h3 {
	background: #888;
	color: #fff;
	padding: 4px;
	font-size: 11px;
}
#main > li > .box > .setting > ul.general {
	padding: 4px;
}
#main > li > .box > .setting > ul.general > li {
	margin-bottom: 4px;
}
#main > li > .box > .setting > ul.general h4 {
	font-size: 10px;
	margin-bottom: 2px;
}
.setting input[type="text"], .dialog input[type="text"] {
	font-size: 12px;
	padding: 4px;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
}
#controll-panel {
	display: none;
	margin-bottom: 4px;
}
#controll-panel .btns {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}
#controll-panel a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.9);
	user-select: none;
	margin-left: 4px;
	flex-grow: 0;
	flex-shrink: 0;
}
#controll-panel a:hover {
	background: #fff;
}
#controll-panel a:active {
	background: rgba(255, 255, 255, 0.75);
}
#controll-panel a:first-child {
	margin-left: 0;
}
#controll-panel a > span {
	color: rgba(0, 0, 0, 0.75);
	font-size: 14px;
}
#controll-panel a:hover > span {
	color: rgba(0, 0, 0, 0.9);
}
#about-for-guest {
	margin-top: 4px;
	border-radius: 8px;
	background: #44b53e;
	overflow: hidden;
	color: #fff;
}
#about-for-guest > header {
	color: #fff;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 22px;
	font-size: 12px;
	font-weight: bold;
}
#about-for-guest > main {
	padding: 12px;
}
#about-for-guest > main > p {
	font-size: 12px;
	line-height: 1.5;
	margin-bottom: 8px;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.1);
}
#about-for-guest > main a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	color: #00acee;
	background: #fff;
	border-radius: 8px;
	font-weight: bold;
	vertical-align: bottom;
	border: 2px solid #00acee
}
#about-for-guest a:hover {
	background: #00acee;
	color: #fff;
}
#ad-bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	z-index: 100;
	pointer-events: none;
}
#ad-bottom .ad-slot {
	border: 4px solid rgba(0, 0, 0, 0.25);
	border-radius: 4px;
}
body[data-color-mode='light'] #main > li > .box > .main {
	background-color: #fff;
}
body[data-color-mode='dark'] #main > li > .box > .main {
	background-color: #000;
}
.box > .setting .setting-clock-show-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.box > .setting .setting-clock-show-toolbar > input[type="checkbox"] {
	margin-right: 4px;
}
.box[data-box-style="clock"] > .main {
	padding: 8px;
	text-align: center;
}
.box[data-box-style="clock"] .date, .box[data-box-style="clock"] .time {
	font-family: 'IBM Plex Sans', sans-serif;
}
.box[data-box-style="clock"] .date {
	font-size: 1.5vw;
	margin-bottom: 0.25vw;
}
.box[data-box-style="clock"] .time {
	font-size: 1.5vw;
}.box[data-box-style="entry"] .main > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 18px;
	user-select: none;
}
.box[data-box-style="entry"] .main > header > .filter {
	flex-grow: 1;
	flex-shrink: 1;
	padding: 0 4px;
}
.box[data-box-style="entry"] .main > header > .filter > select {
	width: 100%;
	height: 14px;
	font-size: 10px;
	outline: none;
}
.box[data-box-style="entry"] .main > header > nav {
	flex-grow: 0;
	flex-shrink: 0;
}
.box[data-box-style="entry"] .main > header > nav > a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 12px;
	height: 18px;
}
.box[data-box-style="entry"] .main > header > nav > a > span {
	font-size: 10px;
}
.box[data-box-style="entry"] .main > header > nav > a.disabled {
	opacity: 0.25;
	cursor: default;
}
.box[data-box-style="entry"] .main > ul.entries li {
	padding: 4px;
}
.box[data-box-style="entry"] .main > ul.entries li:last-child {
	border-bottom: none;
}
.box[data-box-style="entry"] .main > ul.entries li > .entry > a {
	font-size: 11px;
	word-break: break-all;
	word-wrap: break-word;
}
.box[data-box-style="entry"] .main > ul.entries li > .site {
	margin-top: 2px;
	text-align: right;
}
.box[data-box-style="entry"] .main > ul.entries li > .site > a {
	font-size: 10px;
	display: inline-flex;
	max-width: 80%;
	padding: 0 4px;
	border-radius: 4px;
	height: 14px;
	align-items: center;
	justify-content: flex-start;
}
.box[data-box-style="entry"] .main > ul.entries li > .site > a > span {
	overflow: hidden;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > header {
	background-color: #c9c9c9;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > header {
	background-color: #373737;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > header > nav > a > span {
	color: #393939;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > header > nav > a > span {
	color: #c1c1c1;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > header > nav > a:not(.disabled):hover > span {
	color: #3e221c;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > header > nav > a:not(.disabled):hover > span {
	color: #b4a39c;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > header > .filter > select {
	background: #f2f2f2;
	color: #090909;
	border: 1px solid #919191;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > header > .filter > select {
	background: #0e0e0e;
	color: #e4e4e4;
	border: 1px solid #646464;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > ul.entries li {
	border-bottom: 1px solid #dedede;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > ul.entries li {
	border-bottom: 1px solid #3f3f3f;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .entry > a {
	color: #3558a1;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .entry > a {
	color: #8eaec8;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .entry > a:hover, body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .entry > a:visited:hover {
	color: #a3522a;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .entry > a:hover, body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .entry > a:visited:hover {
	color: #d1b693;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .entry > a:visited {
	color: #9b6d9b;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .entry > a:visited {
	color: #b6a1b7;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .site > a {
	color: #fff;
	background: #9c9c9c;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .site > a {
	color: #000;
	background: #686868;
}
body[data-color-mode='light'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .site > a:hover {
	background: #7e7e7e;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style="entry"] .main > ul.entries li > .site > a:hover {
	background: #8e8e8e;
}
.box > .setting .setting-1-show-site-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.box > .setting .setting-1-show-site-title > input[type="checkbox"] {
	margin-right: 4px;
}
.box > .setting .setting-1-keyword-area {
	padding: 4px;
	background: #999;
}
.box > .setting .setting-1-keyword-area > input[type="search"] {
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 8px;
	border: 1px solid #ddd;
	width: 100%;
}
.box > .setting .setting-1-sites {
	
}
.box > .setting .setting-1-sites li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2px;
	border-bottom: 1px solid #d2d2d2;
}
.box > .setting .setting-1-sites input[type="checkbox"] {
	flex-grow: 0;
	flex-shrink: 0;
}
.box > .setting .setting-1-sites input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	border: 1px solid #d2d2d2;
	background: #fff;
	justify-content: center;
	align-items: center;
	outline: none;
	cursor: pointer;
}
.box > .setting .setting-1-sites input[type="checkbox"]:after {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #fff;
	content: " ";
}
.box > .setting .setting-1-sites input[type="checkbox"]:checked {
	border-color: #c2c2c2;
}
.box > .setting .setting-1-sites input[type="checkbox"]:checked:after {
	background: #0c0;
}
.box > .setting .setting-1-sites input[type="checkbox"]:not(:checked):hover:after, .box > .setting .setting-1-sites input[type="checkbox"]:not(:checked).hover:after {
	background: #cfcfcf;
}
.box > .setting .setting-1-sites div.info {
	display: inline-block;
	flex-grow: 1;
	flex-shrink: 1;
	margin-left: 4px;
	overflow: hidden;
}
.box > .setting .setting-1-sites h3 {
	font-size: 11px;
	font-weight: normal;
}
.box > .setting .setting-1-sites h3 > label {
	cursor: pointer;
}
.box > .setting .setting-1-sites h4 {
	font-size: 10px;
	font-weight: normal;
}
.box > .setting .setting-1-sites h4 a {
	color: #666;
}
.box > .setting .setting-1-sites h4 a:hover {
	color: #444;
}
.box > .setting input[type='button'].more {
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	display: none;
	align-items: center;
	justify-content: center;
	background: #8a8a8a;
	color: #fff;
	font-size: 12px;
	border: none;
	width: 100%;
	height: 32px;
	cursor: pointer;
	font-weight: normal;
	border-radius: 0 !important;
	border: none !important;
}
.box > .setting input[type='button'].more:enabled:hover {
	background: #a6a6a6;
}
.box > .setting input[type='button'].more:active {
	background: #b7a08d;
}
.box > .setting input[type='button'].more:disabled {
	background: #9e9e9e;
	color: #aaa;
}.box[data-box-style='search'] > .main > form {
	padding: 4px;
	
}
.box[data-box-style='search'] > .main > form > .basic {
	display: flex;
	border-radius: 4px;
	overflow: hidden;
	align-items: center;
	justify-content: space-between;
}
.box[data-box-style='search'] > .main > form > .basic > input[type='text'] {
	flex-grow: 1;
	flex-shrink: 1;
	height: 20px;
	font-size: 12px;
	padding: 4px;
	border: none;
	min-width: 0;
}
.box[data-box-style='search'] > .main > form > .basic > input[type='submit'] {
	flex-grow: 0;
	flex-shrink: 0;
	width: 34px;
	height: 20px;
	font-size: 12px;
	border: none;
	cursor: pointer;
}
.box[data-box-style='search'] > .main > form > .basic > input[type='submit']:hover {
	background: #f8f8f8;
	color: #212121;
}
body[data-color-mode='light'] #main > li > .box[data-box-style='search'] > .main > form {
	background: #f2f2f2;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style='search'] > .main > form {
	background: #191919;
}
body[data-color-mode='light'] #main > li > .box[data-box-style='search'] > .main > form > .basic {
	border: 1px solid #4a4a4a;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style='search'] > .main > form > .basic {
	border: 1px solid #818181;
}
body[data-color-mode='light'] #main > li > .box[data-box-style='search'] > .main > form > .basic > input[type='text'] {
	background: #fff;
	color: #000;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style='search'] > .main > form > .basic > input[type='text'] {
	background: #000;
	color: #fff;
}
body[data-color-mode='light'] #main > li > .box[data-box-style='search'] > .main > form > .basic > input[type='submit'] {
	background: #f1f1f1;
	color: #373737;
	border-left: 1px solid #929292;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style='search'] > .main > form > .basic > input[type='submit'] {
	background: #181818;
	color: #c7c7c7;
	border-left: 1px solid #727272;
}
body[data-color-mode='light'] #main > li > .box[data-box-style='search'] > .main > form > .basic > input[type='submit']:hover {
	background: #e4e4e4;
	color: #212121;
}
body[data-color-mode='dark'] #main > li > .box[data-box-style='search'] > .main > form > .basic > input[type='submit']:hover {
	background: #2f2f2f;
	color: #dfdfdf;
}