/* 20fragen – Einträge-Board */
@charset "UTF-8";

div.eb {
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  --eb-blue: rgb(14, 32, 80);
  --eb-yellow: rgb(255, 204, 0);
}

div.eb * {
  box-sizing: border-box;
}

div.eb form {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1rem;
  align-items: center;
}

div.eb .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

div.eb input[name="eintrag"] {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--eb-blue);
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-weight: 400;
  color: inherit;
  line-height: 1.2;
}

div.eb input[name="eintrag"]::placeholder {
  color: inherit;
  opacity: 0.55;
}

div.eb .btn {
  display: inline-block;
  font-weight: 300;
  color: #000;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, transform 0.12s ease;
}

div.eb .btn-yellow {
  background-color: var(--eb-yellow);
  border-color: transparent;
  color: #000;
}

div.eb .btn-yellow:hover,
div.eb .btn-yellow:focus-visible {
  background-color: var(--eb-yellow);
  border-color: transparent;
  color: #000;
  transform: translateY(2px);
}

div.eb ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

div.eb li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.65rem 0;
  border-top: 1px solid color-mix(in srgb, currentColor 15%, transparent);
}

div.eb li:first-child {
  border: 0;
}

div.eb .v {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  max-height: 20px;
}

div.eb .pair {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.2rem;
  max-height: 20px;
}

div.eb .v button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--eb-yellow);
  opacity: 0.8;
  cursor: pointer;
  line-height: 0;
  flex-shrink: 0;
  transition: opacity 0.12s ease;
}

div.eb .v button.on,
div.eb .v button:hover,
div.eb .v button:focus-visible {
  opacity: 1;
}

div.eb .v button svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  display: block;
}

div.eb .v .count {
  font-size: 1em;
  line-height: 20px;
  opacity: 1;
  flex-shrink: 0;
}

div.eb .v .count.is-zero {
  opacity: 0;
}

div.eb .text {
  width: 100%;
  margin: 0;
}

div.eb .leer {
  opacity: 0.5;
}
