/* /Components/Footer.razor.rz.scp.css */
footer[b-rifoqvximi] {
  padding: 1em;
  font-size: var(--font-size-sm);
  font-weight: bold;

  & > ul {
    display: flex;
    gap: 12px;

    & > li:not(:first-child) {
      display: flex;
      align-items: center;
      gap: 12px;

      &::before {
        content: '';
        display: inline-block;
        width: 1px;
        min-height: 1em;
        background: var(--color-primary)
      }
    }
  }
}
/* /Components/Header.razor.rz.scp.css */
header[b-sfh58lhrsh] {
  --border-size: 2px;
  display: flex;
  justify-content: space-between;
  padding: 0.5em;
  border-bottom: var(--border-size) solid currentColor;

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;

    picture {
      width: 48px;
    }
  }

  &.expanded > .navbar[b-sfh58lhrsh] {
    display: unset;
    width: 100%;
    padding-block-start: 1rem;

    .navigation {
      flex-direction: column;
      padding: 0.5em 1em;
      text-align: center;

      .nav-link > span {
        display: unset;
      }

      .btn-feedback[b-sfh58lhrsh] {
        display: none;

        & ~ .feedback-item {
          display: unset;
        }
      }
    }
  }
}

.navigation[b-sfh58lhrsh] {
  display: flex;
  gap: 1em;

  .nav-item {
    font-size: calc(var(--font-size-md) * 2);

    .nav-link {
      text-decoration: none;
      color: currentColor;
      cursor: pointer;

      i + span {
        margin-inline-start: 0.5rem;
      }

      & > span[b-sfh58lhrsh] {
        display: none;
      }

      &:hover[b-sfh58lhrsh] {
        color: var(--color-accent);
      }
    }
  }
}

.btn-feedback[b-sfh58lhrsh] {
  border: none;
  background: transparent;
  padding: unset;
  color: var(--color-primary);
  anchor-name: --feedback-button;

  &:hover, &:focus-visible {
    background: unset;
    color: var(--color-accent);
  }

  & ~ .feedback-item[b-sfh58lhrsh] {
    display: none;
  }
}

.feedback-popover[b-sfh58lhrsh] {
  border: 1px solid var(--color-accent);
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--color-dialog-background);
  position: absolute;
  position-anchor: --feedback-button;
  margin: 0;
  inset: auto;
  top: anchor(bottom);
  right: anchor(right);
  justify-self: anchor-center;
  font-size: var(--font-size-lg);

  &:popover-open {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

.hamburger[b-sfh58lhrsh] {
  --animation-speed: 200ms;

  display: none;
  position: absolute;
  right: 0.5rem;
  background: transparent;
  border: unset;
  padding: 0.5em;
  cursor: pointer;

  &:hover, &:focus-visible {
    background: unset;
    color: unset;
  }

  &:focus-visible[b-sfh58lhrsh] {
    outline: 1px solid var(--color-accent);
  }

  .line[b-sfh58lhrsh] {
    transition: y var(--animation-speed) ease-in var(--animation-speed), rotate var(--animation-speed) ease-in, opacity 0ms var(--animation-speed);
    transform-origin: center;
  }

  &.expanded[b-sfh58lhrsh] {
    .line {
      transition: y var(--animation-speed) ease-in, rotate var(--animation-speed) ease-in var(--animation-speed), opacity 0ms var(--animation-speed)
    }

    :is(.top, .bottom)[b-sfh58lhrsh] {
      y: 45px;
    }

    .top[b-sfh58lhrsh] {
      rotate: 45deg;
    }

    .middle[b-sfh58lhrsh] {
      opacity: 0;
    }

    .bottom[b-sfh58lhrsh] {
      rotate: -45deg;
    }
  }
}

@media only screen and (max-width: 768px) {
  .hamburger[b-sfh58lhrsh] {
    display: flex;
  }

  header[b-sfh58lhrsh] {
    flex-direction: column;
    justify-content: unset;
    overflow: clip;
    align-items: flex-start;
    position: fixed;
    width: 100%;
    height: var(--header-height);
    min-height: 0;
    padding-inline: 0;
    padding-block-end: 0;
    background: var(--color-background);
    transition: min-height ease-in 750ms;
    z-index: 2;

    &.expanded {
      min-height: calc(100svh + var(--border-size));
      z-index: 2;
    }

    .navbar[b-sfh58lhrsh] {
      display: none;
    }
  }
}
/* /Components/Modals/SettingsModal.razor.rz.scp.css */
.settings[b-4ly5rbq1j7] {
  container: settings / inline-size;

  display: flex;
  flex-direction: column;
  height: 100%;

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-secondary-accent);
    padding-block-end: 8px;
  }

  .body[b-4ly5rbq1j7] {
    display: flex;
    gap: 12px;
    flex-grow: 1;
    margin-block-start: 8px;
    overflow: hidden;

    @container settings (max-width: 576px) {
      flex-direction: column;
      margin-block-start: 0px;
    }

    .tabs {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      padding: 8px 12px;
      padding-inline-start: 4px;
      border-right: 1px solid var(--color-secondary-accent);

      @container settings (max-width: 576px) {
        flex-direction: row;
        border-right: unset;
        border-bottom: 1px solid var(--color-secondary-accent);
      }

      .tab {
        font-weight: bold;
        cursor: pointer;
        padding: 4px 8px;

        &:focus-visible {
          outline: 1px solid var(--color-dialog-primary);
        }

        &:not(.active):is(:hover, :focus-visible)[b-4ly5rbq1j7], &.active[b-4ly5rbq1j7] {
          color: var(--color-dialog-primary);
        }
      }
    }

    .content[b-4ly5rbq1j7] {
      overflow-y: auto;
      padding: 8px;
      overscroll-behavior: contain;
      scrollbar-width: thin;
      outline: none;
      width: 100%;
      height: 100%;

      &.general {
        display: flex;
        flex-direction: column;
        gap: 16px;

        & > div:has(+ div) {
          border-bottom: 1px solid;
          padding-block-end: 16px;
          border-color: hsl(from var(--color-secondary-accent) h s l / 0.2);
        }
      }

      &.changelog[b-4ly5rbq1j7] {
        display: flex;
        flex-direction: column;
        gap: 8px;

        &:has(> .spinner) {
          align-items: center;
          justify-content: center;
        }
      }

      &.countries[b-4ly5rbq1j7] {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
        gap: 24px;
        padding-inline-end: 16px;
      }

      &.difficulty[b-4ly5rbq1j7] {
        display: flex;
        flex-direction: column;
        gap: 1em;
      }
    }
  }
}

@media only screen and (max-width: 576px) {
  .settings > .body > .tabs[b-4ly5rbq1j7] {
    overflow-y: hidden;
    overflow-x: auto;
  }
}
/* /Components/Modals/ZoomModal.razor.rz.scp.css */
.zoom[b-93wsfpezc6] {
  --width: 600px;
  max-width: var(--width);
  min-width: 450px;
  width: fit-content;
  height: fit-content;
  padding: unset;
  border-color: var(--color-secondary-accent);
  border-radius: unset;
  cursor: zoom-out;
}

@media only screen and (max-width: 576px) {
  .zoom[b-93wsfpezc6] {
    min-width: 350px;
  }
}
/* /Games/Components/CountryLookupInput.razor.rz.scp.css */
.container[b-aqwfnwey2e] {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: var(--max-game-width);
  position: absolute;
}

.items[b-aqwfnwey2e] {
  --max-item-count: 7;
  --border-width: 1px;
  --item-padding-block: 0.5em;

  max-height: calc(((var(--item-padding-block) * 2) + var(--border-width) + var(--font-size-md) * var(--default-line-height)) * var(--max-item-count));
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--color-accent);
  color: var(--color-text);
  background-color: var(--color-secondary);
  z-index: 2;

  &:empty {
    display: none;
  }

  .item[b-aqwfnwey2e] {
    border-bottom: var(--border-width) solid currentColor;
    padding-block: var(--item-padding-block);
    padding-inline-start: 0.5em;

    &:hover {
      background-color: var(--color-background);
    }

    &:last-child[b-aqwfnwey2e] {
      border-bottom: none;
    }
  }
}

@media only screen and (max-width: 768px) {
  .items[b-aqwfnwey2e] {
    --max-item-count: 5;
  }
}
/* /Games/Components/GameOver.razor.rz.scp.css */
.game-over[b-b3g36vm2mc] {
  display: flex;
  position: absolute;
  gap: 1em;
  align-items: center;

  .answer {
    font-weight: bold;
  }

  .congratulations[b-b3g36vm2mc] {
    display: flex;
    flex-direction: column;
    align-items: center;

    .answer {
      font-size: var(--font-size-xs);
    }
  }
}
/* /Games/Flags/Components/FlagGuesses.razor.rz.scp.css */
.container[b-kq5uy9eynv] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: var(--max-game-width);
  padding-inline: 1rem;
  margin-block-start: 4rem;
  font-size: var(--font-size-sm);
  color: var(--color-text);

  .guess {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 8px 12px;
    border: 1px solid var(--color-danger);
    border-radius: 8px;
    width: var(--max-game-width);
    height: 64px;

    &:not(.empty).found {
      border-color: var(--color-success);
      box-shadow: 0px 0px 10px var(--color-success);
    }

    &.empty[b-kq5uy9eynv] {
      height: 30px;
      background: var(--color-secondary);
      border-color: var(--color-secondary);
      font-style: italic;
      font-weight: bold;
      justify-content: center;

      &.found {
        opacity: 0.5;
      }
    }
  }

  .information[b-kq5uy9eynv] {
    display: flex;
    gap: 8px;
    flex: 1 0 0;

    .vr {
      border-right: 1px solid var(--color-secondary);
      min-height: 100%;
    }

    .content[b-kq5uy9eynv] {
      display: flex;
      flex-direction: column;
      gap: 4px;
      width: 120px;
      text-wrap: nowrap;

      .country-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .continent[b-kq5uy9eynv] {
        display: flex;
        gap: 8px;
        align-items: center;

        .same-continent {
          display: flex;
          font-size: 2em;
          color: var(--color-danger);

          &.found {
            color: var(--color-success);
          }
        }
      }

      .direction[b-kq5uy9eynv] {
        display: flex;
        gap: 8px;
        align-items: center;
        flex: 1 0 0;

        .arrow {
          display: flex;
          font-size: 1.2em;
          color: var(--color-accent);

          &.found {
            transform: unset;
            color: var(--color-success);
            font-size: 2em;
          }
        }
      }
    }
  }
}
/* /Index.razor.rz.scp.css */
.container[b-n7rw1tkzdl] {
  display: flex;
  padding: 16px 12px;

  .game-list {
    display: flex;
    flex-direction: column;
    gap: 8px;

    h2 {
      display: flex;
      gap: 8px;
      align-items: center;

      &:not(:first-child) {
        margin-block-start: 1em;
      }
    }
  }
}

.games[b-n7rw1tkzdl] {
  display: flex;
  padding: 8px 12px;
  padding-inline-start: 0;
  gap: 16px;
}
/* /NotFound.razor.rz.scp.css */
.not-found[b-w6paihw5ko] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block-start: 2em;
  padding-inline: 2em;

  .message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-left: 1px solid var(--color-primary);
    padding-inline-start: 1em;
    color: var(--color-text);
    text-wrap: balance;
    width: 250px;

    .link {
      font-weight: bold;
    }
  }
}
/* /Settings/Components/CountryList.razor.rz.scp.css */
.country-card[b-wsouems6ge] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  gap: 12px;

  .flag {
    height: 100px;
  }

  .name[b-wsouems6ge] {
    text-align: center;
  }
}
/* /Settings/Components/DifficultySettings.razor.rz.scp.css */
.difficulty-settings[b-db1y7h33at] {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding: 12px;
  margin: 0;
  border: 1px solid hsl(from var(--color-dialog-primary) h s l / 0.75);

  legend {
    font-weight: bold;
    padding-inline: 1em;
  }

  .settings[b-db1y7h33at] {
    display: flex;
    flex-direction: column;
    gap: 1em;

    &.disabled {
      opacity: 0.5;
    }
  }
}
/* /Settings/Components/GeneralSettings.razor.rz.scp.css */
.display-settings[b-gxrllnbft9] {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-inline: 4px;
  padding-block-start: 8px;

  .display-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-inline-start: 12px;

    .theme, .language {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 250px;
    }

    label[b-gxrllnbft9] {
      width: 100px;

      & + :is(input, select) {
        flex-grow: 1;
      }
    }
  }
}

.info[b-gxrllnbft9] {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  font-style: italic;
  font-weight: bold;

  i {
    display: flex;
  }
}
/* /Settings/Components/InputDifficulty.razor.rz.scp.css */
.radio-group[b-i73m4vrud6] {
  display: grid;
  row-gap: 1em;
  grid-template-columns: repeat(5, 1fr)
}

.radio[b-i73m4vrud6] {
  display: flex;
  gap: 8px;
  align-items: center;
  accent-color: var(--color-accent);
}

@media only screen and (max-width: 576px) {
  .radio-group[b-i73m4vrud6] {
    grid-template-columns: repeat(3, 1fr);
  }
}
