.linksammlung {
  margin: 0;
  padding: 0;
  font-family: 16px;
  line-height: 1.6;
}
.count {
  padding: 0.3rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  margin-left: 0.5rem;
  margin-top: -1.6rem;
  min-width: 1.5rem;
  line-height: 1.2;
  text-align: center;
  color: white;
  background: rgb(0 117 255);
}
@media only screen
and (orientation: portrait)
and (max-device-width : 812px) {
  .count {
    padding: 1.2rem;
    border-radius: 2rem;
    font-size: 1.8rem;
    margin-right: 0.5rem;
    margin-top: -0.8rem;
    line-height: 0.8;
  }
}
.list__item {
  display: block;
  margin: 0 0 1rem 0;
  background-color: #F6F6F6;
  border-radius: 1rem;
  transition: all 0.2s ease;
}
.item_link {
  color: #484848 !important;
  background-color: #F6F6F6;
  border-radius: 1rem;
  font-family: 'Roboto Slab', serif;
  font-weight: normal;
  font-size: 0.9rem;
  overflow: hidden;
}
.item_link > div {
  padding-right: 0.5rem;
}
.item_link > div:not(:last-child):after {
  padding-left: 0.5rem;
}
.item_link:hover {
  color: #000 !important;
  background-color: #f9f9f9 !important;
  border-radius: 1rem;
  box-shadow:
    0px 0px 0.8px rgba(0, 0, 0, 0.01),
    0px 0px 6px rgba(0, 0, 0, 0.1)
  ;
}
.name {
  margin: 11px -15px 11px 25px;
  align-content: center;
  height: 100%;
  float: left;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.link {
  color: #ccc !important;
  margin: 1.1rem 0px 11px 25px;
  align-content: center;
  float: left;
}
.controls {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.controls > div {
  font-weight: 600;
}
.controls > * {
  margin-right: 1rem;
  transition: all 0.2s ease;
}
.controls a:hover {
  color: #000;
}
.controls .sort {
  display: flex;
  align-items: flex-end;
  color: var(--primary-color);
  text-decoration: none;
}
.controls .sort:after {
  display: block;
  opacity: 0;
  content: "";
  margin-left: 0.25rem;
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}
.controls .sort.asc, .controls .sort.desc {
  color: #000;
  font-weight: 600;
}
.controls .sort.asc:after {
  opacity: 1;
  content: "arrow_drop_up";
}
.controls .sort.desc:after {
  opacity: 1;
  content: "arrow_drop_down";
}
.tag-filter {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.tag-filter div {
  font-weight: 600;
  margin-right: 0.5rem;
}
.tag-filter .tag {
  display: flex;
  cursor: pointer;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  color: white;
  background: #484848;
  padding: 0.2rem 0.6rem 0.2rem 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  overflow: hidden;
}
.tag-filter .tag:after {
  content: "x";
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  transition: all 0.2s ease;
}
.tag-filter .tag.active:after {
  opacity: 1;
  visibility: visible;
  max-width: 2rem;
  margin-left: 0.4rem;
}
.tag-filter .tag:hover, .tag-filter .tag.active {
  background: rgb(0 117 255);
}
.tag-item {
  margin: 1rem 0px;
  display: flex;
  align-content: center;
  float: right;
  height: 100%;
}
.tag-item div {
  margin-right: 0.5rem;
}
.tag-item .tag {
  display: flex;
  cursor: pointer;
  color: white;
  background: #cccccc;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
}
