aside.drawer#list {
  padding-left: 0;
  overflow-y: scroll;
  color: var(--text-sidebar);
  background-color: var(--bg-list);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
aside.drawer#list::-webkit-scrollbar {
  width: 12px;
}
aside.drawer#list::-webkit-scrollbar-track {
  background: var(--bg-list);
}
aside.drawer#list::-webkit-scrollbar-thumb {
  background-color: var(--gray);
  border-radius: 20px;
  border: 3px solid var(--bg-list);
}
@media only screen and (max-width: 700px) {
  aside.drawer#list {
    font-size: 1.2em;
    min-height: unset;
    top: 4rem;
    height: calc(100vh - 4rem);
    transition: all 0.5s ease-in-out;
    position: fixed;
    z-index: 6;
  }
  aside.drawer#list.hidden {
    padding: 0;
    height: 0px;
  }
}
aside.drawer#list > div {
  padding-top: 1em;
  width: auto;
}
aside.drawer#list > div > ul {
  padding-left: 0.5em;
}
aside.drawer#list.hidden .filter {
  display: none;
}
aside.drawer#list .filter {
  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  display: flex;
  color: var(--text-inverted);
  background-color: var(--bg-list);
}
@media only screen and (max-width: 700px) {
  aside.drawer#list .filter {
    position: fixed;
    width: calc(100vw - 5.4rem);
    height: 4rem;
    z-index: 10;
    align-items: center;
    justify-content: center;
    background: none;
  }
}
aside.drawer#list .filter .reset {
  flex: 0 0 1.5em;
  font-size: 1.4em;
  margin-left: -1.5em;
  cursor: pointer;
  margin-top: 1rem;
  display: none;
}
aside.drawer#list .filter .reset.filled {
  display: block;
}
@media only screen and (max-width: 700px) {
  aside.drawer#list .filter .reset {
    margin-top: 0;
    margin-left: -1.5rem;
  }
}
aside.drawer#list .filter .open-tags {
  cursor: pointer;
  margin-left: 0.7rem;
}
@media only screen and (min-width: 700px) {
  aside.drawer#list .filter .open-tags {
    display: none;
  }
}
aside.drawer#list .filter input {
  margin-top: 1rem;
  padding-left: 0.5em;
  height: 2em;
  display: block;
  flex: 1 1 auto;
  transition: color, background-color 0.5s;
  background-color: var(--gray);
}
@media only screen and (max-width: 700px) {
  aside.drawer#list .filter input {
    width: 0px;
    height: 2rem;
    margin: 0;
    padding-right: 2rem;
  }
}
aside.drawer#list .filter input:focus {
  outline: none;
}
aside.drawer#list .filter input::placeholder {
  color: transparent;
}
aside.drawer#list .filter input[value=""] {
  background-color: var(--bg-list);
}
aside.drawer#list .filter input[value=""]::placeholder {
  color: var(--text-sidebar);
}
aside.drawer#list .filter input:focus {
  background-color: var(--gray);
}
aside.drawer#list .filter input:focus::placeholder {
  color: var(--text-inverted);
}
aside.drawer#list div.filterMenu {
  position: absolute;
  left: 220px;
  right: 0;
  top: 0;
  overflow: hidden;
  padding-top: 0.5em;
  padding-left: 2em;
  padding-bottom: 1.5em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: var(--bg-filter-translucent);
  max-height: 800px;
  opacity: 1;
  transition: all 0.5s;
}
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  aside.drawer#list div.filterMenu {
    background-color: var(--bg-filter-opaque);
  }
}
aside.drawer#list div.filterMenu > h4 {
  display: none !important;
}
aside.drawer#list div.filterMenu h1,
aside.drawer#list div.filterMenu h2 {
  display: none;
}
aside.drawer#list div.filterMenu h4 {
  color: var(--text);
  display: block;
  transform-origin: left;
  font-weight: 600;
  transform: rotate(-14deg);
  margin-left: -0.5em;
}
aside.drawer#list div.filterMenu ul {
  margin-left: 0.5em;
  margin-right: 0.5em;
  flex: 0 0 7em;
}
aside.drawer#list div.filterMenu li {
  display: inline-table;
  color: var(--text-inverted);
  margin-bottom: 0.5em;
  transform-origin: left;
  transform: rotate(-14deg);
  cursor: pointer;
}
aside.drawer#list div.filterMenu li:hover {
  background-color: var(--text);
}
aside.drawer#list div.filterMenu li b {
  width: 1em;
}
aside.drawer#list div.filterMenu.hidden {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 700px) {
  aside.drawer#list div.filterMenu {
    position: fixed;
    top: 4rem;
    left: 0;
    height: calc(100vh - 4rem);
    padding-left: 0.5em;
    overflow-y: scroll;
    visibility: visible;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  aside.drawer#list div.filterMenu.open {
    max-height: unset;
    visibility: visible;
    opacity: initial;
  }
}
aside.drawer#list li {
  white-space: nowrap;
  overflow: hidden;
  margin-left: -0.5em;
  padding-left: 0.5em;
}
aside.drawer#list li h2.huge {
  font-family: 'Cooper';
  font-weight: normal;
  font-size: 3em;
  margin-left: -0.05em;
  margin-top: 0.5rem;
  margin-bottom: -0.5rem;
}
aside.drawer#list li a {
  display: flex;
  justify-content: space-between;
  padding-top: 0.1em;
  padding-bottom: 0.2em;
  padding-left: 0.5em;
  padding-right: 1em;
  margin-left: -0.5em;
  margin-right: -0.5em;
}
aside.drawer#list li a:focus {
  outline: none;
}
aside.drawer#list li a span {
  display: inline-block;
  box-sizing: border-box;
  min-width: 0;
  text-overflow: ellipsis;
  overflow: hidden;
}
aside.drawer#list li a .author {
  display: none;
  flex: 1 0 0;
  color: var(--accent);
  background-color: var(--bg-list);
  text-align: right;
  direction: rtl;
  overflow: hidden;
}
aside.drawer#list li a .darling {
  margin: 0;
  padding: 0;
  display: none;
  width: 1.2em;
  margin-right: 0.1em;
  text-align: right;
}
aside.drawer#list li a .darling svg {
  width: 0.7em;
  height: auto;
  stroke-width: 3px;
  fill: transparent;
}
aside.drawer#list li a.selected .darling {
  display: inline-block;
}
aside.drawer#list li a.selected .darling svg {
  stroke: var(--text-inverted);
}
aside.drawer#list li a.selected .darling:hover svg {
  fill: var(--accent);
}
aside.drawer#list li a .darling.is_darling {
  display: inline-block;
}
aside.drawer#list li a .darling.is_darling svg {
  fill: var(--accent);
  stroke: transparent;
}
aside.drawer#list li a .darling.is_darling:hover svg {
  fill: var(--accent);
}
aside.drawer#list li a:hover .title {
  flex: 1 0 0;
}
aside.drawer#list li a:hover .author {
  display: inline-block;
  flex: 0 0 auto;
  color: var(--accent);
}
aside.drawer#list li a.selected {
  color: var(--text-inverted);
  background-color: var(--gray);
}
aside.drawer#list li a.selected .author {
  display: none;
}
aside.drawer#list .username {
  position: absolute;
  bottom: 0;
  width: 220px;
  box-sizing: border-box;
  padding: 0.5em;
  background-color: var(--bg-list);
  display: flex;
  cursor: pointer;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.9em;
  text-align: right;
}
aside.drawer#list .username:hover {
  color: var(--accent);
}
@media only screen and (max-width: 700px) {
  aside.drawer#list .username {
    display: none;
  }
}
