
header .top div{
	text-align: center;
}
.brand{
	margin: 1rem 0 2rem;
}
.brand a{
	display: block;
	text-decoration: none;
	font-weight: 700;
	font-size: 175%;
	line-height: 1.25;
}
.brand em {
	display: block;
	font-size: 82%;
	color: #6a6a6a;
}
.brand a strong{
	font-weight: 700;
}
.brand a span{
	font-weight: 400;
}
.find form input{
	margin-bottom: 0;
	border-radius: .5rem;
}
.links{margin-top: .75rem}
.links ul {
	display: block;
	text-align: left;
	margin: 0;
	padding: 0;
	text-align: center;
}
.links ul li {
	display: inline-block;
	list-style: none;
	line-height: normal;
	margin: 0 .5rem;
}
.links ul li a {
	text-decoration: none;
	font-size: 70%;
	display: block;
	border-bottom: 1px dashed;
	line-height: 1.2;
}
.links ul li a:hover{
	border-bottom: 1px solid;
	color: #000;
}
.links ul li.now a{
	color: #000;
	border-bottom-style: solid;
	font-weight: 500;
}

.list{
	margin: 1.5rem 0 2.5rem;
}
.list h2{
	font-size: 110%;
	margin-bottom: .5rem;
	font-weight: 500;
}
.list h1,.page-title h1{
	font-size: 150%;
}
.items{
	display: grid;
	grid-template-columns:repeat(auto-fit,minmax(10%,1fr));
}
.items > div {
	aspect-ratio: 1/1;
	border: 1px solid #f0f0f0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .75rem;
	overflow: hidden;
	cursor: pointer;
}
.items > div:hover {
	border-color: #b5b5b5;
}
.items div img{
	width: 100%;
	max-width: 64px;
}
.list .all {
	text-align: right;
	font-size: 80%;
	margin-top: .25rem;
}
div .seen{
	border-width: 2px;
	border-color: var(--pico-primary);
}

.view-icon {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(.5rem);
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
	z-index: 9;
	background-color: #00000045;
}
.view-icon .icond{
	width: 100%;
	max-width: 384px;
	height: auto;
	aspect-ratio: 1/1;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: .5rem;
	padding: 1rem;
	position: relative;
	/*display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	bottom: 15%;*/
}
.icond img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
	width: auto;
	height: auto;
}
.view-icon .icond .close {
	content: "×";
	position: absolute;
	top: -10px;
	line-height: 1;
	color: red;
	font-weight: 700;
	font-size: 2rem;
	cursor: pointer;
	right: 0;
}
.icond p{
	font-size: 80%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}
.icond .meta {
	margin-top: 1rem;
	font-size: 80%;
	text-align: center;
}
.meta a {
	display: inline-block;
	margin: 0 .25rem;
}
.wait{
	background-image: url('/assets/loadr.gif');
	background-repeat: no-repeat;
	background-position: center center;
}

.pagination{
	margin-bottom: 2rem;
	text-align:center
}
.pagination span, .pagination a {
	display: inline-block;
	border: 1px solid #ddd;
	line-height: 1;
	text-decoration: none;
	padding: .3rem .65rem .3rem;
	border-radius: .25rem;
}
.pagination .current {
	border-color: #777;
}
.pagination :not(.next.page-numbers,.prev.page-numbers,.page-numbers.current){display:none}

.content div{
	max-width: 900px;
}
.content h1{
	font-size: 1.75em;
}
.term-search form input{
	height: calc(1rem * var(--pico-line-height) + var(--pico-form-element-spacing-vertical) * 1 + var(--pico-border-width) * 1);
	padding: var(--pico-form-element-spacing-vertical) var(--pico-form-element-spacing-horizontal);
}
.page-title{
	margin-bottom: 3rem;
}
.no-content{
	margin-bottom: 15rem;
}

footer{
	text-align: center;
	background-color: var(--pico-primary);
	color: #fff;
}
footer a{
	color: #fff;
}
.pages ul{
	margin: 0;
}
.pages ul li {
	list-style: none;
	display: inline-block;
	padding: 1rem .75rem;
}

.glass-effect {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

/* responsive */
@media (max-width: 1024px) {
	.items{
		grid-template-columns:repeat(auto-fit,minmax(20%,1fr));
	}
}

@media (max-width: 768px) {
	
}