+
+
+.book-container-activator {
+ &:hover, &.hover, &.ac-hover {
+ .book-container {
+ &.book-liked {
+ .icon-liked {
+ font-size: 2em;
+ }
+
+ .set-tools {
+ display: block;
+ }
+ }
+ }
+ }
+}
+
+
+.filter-container {
+ position: absolute;
+ top: 15px;
+ bottom: 25px;
+
+ display: flex;
+ align-items: center;
+
+ .filter {
+ background: #FBC40F;
+ padding: 5px 10px;
+ margin-left: 5px;
+ border-radius: 15px;
+ white-space: nowrap;
+
+ a {
+ color: currentColor;
+ }
+ a:hover {
+ color: inherit;
+ }
+
+ &.filter-category-epoch {
+ background: $teal;
+ color: white;
+ }
+ &.filter-category-kind {
+ background: $red;
+ }
+ &.filter-category-genre {
+ background: $green;
+ }
+ &.filter-category-set {
+ background: white;
+ color: black;
+ border: 1px solid #888;
+
+ &:after {
+ content: '';
+ font-family: 'wl' !important;
+ font-size: .9em;
+ margin-left: 3px;
+ color: $red;
+ }
+ }
+ }
+}
+
+.with-filter {
+ padding: 20px 0 0;
+ position: relative;
+
+ h2 {
+ margin-bottom: 0;
+ }
+}
+.with-filter .row div.filter-container {
+ background: white;
+ width: 100%;
+ top: 0;
+ bottom: 100%;
+ opacity: 0;
+ overflow: hidden;
+
+ transition: opacity .2s, all .3s;
+
+}
+.with-filter.filters-enabled {
+ .row div.filter-container{
+ top: 15px;
+ bottom: 5px;
+ opacity: 1;
+ }
+}
+.with-filter .row div.filter-container:hover {
+ top: 15px;
+ bottom: 5px;
+ opacity: 1;
+}
+
+.l-books__input .filter-container {
+ top: 0;
+ bottom: 0;
+ right: 10px;
+ padding: 10px 0;
+
+}