:root {
    background: #fff;
    box-sizing: border-box;
}

:root a {
    color: #000;
    text-decoration: none;
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";

}

input {
    line-height: 1.55rem;
    font-size:1.2rem;

    box-sizing: border-box;
}

#wrap {
    text-align: center;
}
#wrap h1 {
    text-align: center;
}

#wrap.container {
    max-width:1280px;
}

#thesearch {
    position: sticky;
    left:0;
    right: 0;
    top: 0;
    padding:5px 0;

    z-index: 2;

    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.82);
    border-radius: 0 0 16px 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.93);
}

#thesearch input {
    margin: 0 auto;
    width: 100%;
    max-width:150px;

    line-height: 1;

    background: rgba(255,255,255,.55);

    padding: .35rem;
    border-radius: 4px;
    border:1px solid #cec8c8;

    font-family: monospace;
    transition:all 200ms ease-in-out;
}

#thesearch input::placeholder {
    padding-left: 5px;
    display: block;
    text-align: center;
    color: #d9d9d9;
    font-weight: 100;
    font-family: monospace;
}

#thesearch input:focus-visible,
#thesearch input:active{
    border:1px solid #bbb;
    outline: 0px solid #fff;
    max-width:330px;
    background: rgba(255,255,255,.85);
    color: #444;

}

.not-found {
    margin-top: 2rem;
    box-sizing: border-box;
    padding: 2rem;
    background: rgba(225,225,225,.74);
    font-size: 2rem;
    font-family: monospace;
    color: #555;
    border-radius: 12px;
}

.not-found.hidden {
    display: none;
}

.book-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    border-radius: 0.25rem;

    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px hsl(0 2% 90%);

}

.book-card.hidden {
    display: none;
}

.book-card.filter-hidden {
    display: none !important;
}

.book-card figure {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.5rem;

    padding: 0 1em 1em 1em;
    position: relative;
}

.single.book-card,
.single.book-card figure,
.single.book-card .card-body {
    display: block;
    align-items: unset;
}

h2.card-title {
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";

    font-size: 1rem;
    font-weight: 100;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    align-items: center;

    padding: 0 5px;
    min-height: 2.31em;
}

.card-author {
    margin-top: 2vh;
    font-size: .9rem;
    font-weight: 300;
}



.grid {
    display: grid;
    row-gap: 1em;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (min-width: 680px){
    .md\:grid-cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (min-width: 860px) {
    .xl\:grid-cols-6 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .xxl\:grid-cols-8 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}


.gap-10 {
    gap:10px;
}

.grow-0 {
    flex-grow: 0;
}

.flex-shrink-0,
.shrink-0 {
    flex-shrink: 0;
}

.h-full {
    height:100%;
}

.mar-auto {
    margin-left:auto;
    margin-right:auto;
}


.object-filL {
    object-fit: fill;
}

.hr-72 {
    height:15rem;
}

.hr-single {
    height:50vh;
}

.single .hr-single {
    height: 40vh;
}

.m-1 {
    margin: 0.25rem;
}

p.previtem,
p.nextitem {
	position:absolute;
	top:-15vh;
}

p.previtem svg,
p.nextitem svg {
	width: 50px;
}

p svg path {
	fill: rgb(157 54 54 / 80%);
}

p.previtem {
	left: 0em;
}

p.nextitem {
	right: 0em;
}