@import url("./Standalone.scss");
uix-sitemap {
  width: 100%;
  background-color: var(--bg_color);
  border-top: 1px solid darkgray;
  display: flex;
}
uix-sitemap a {
  text-decoration: none !important;
}
uix-sitemap > div {
  margin-left: 20px !important;
  margin-right: 20px !important;
  width: calc(100% - 40px);
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
}
uix-sitemap #sitemapTitle {
  font-size: xx-large;
  margin-bottom: 14px;
  color: var(--text_accent_1);
}
uix-sitemap #sitemapTitle > img {
  height: 1em;
}
uix-sitemap #sitemapSections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 500px;
}
uix-sitemap #sitemapSections > div {
  display: flex;
  gap: 8px;
  margin-right: 20px;
  flex-direction: column;
}
uix-sitemap #sitemapSections > div .title {
  font-size: large;
  margin-bottom: 0px;
  font-weight: 500;
}
uix-sitemap #sitemapSections > div a {
  font-size: medium;
  color: var(--text) !important;
  opacity: 0.4;
}
uix-sitemap #sitemapSections > div a:hover {
  text-decoration: underline !important;
  opacity: 0.8;
}
@media screen and (max-width: 730px) {
  uix-sitemap #sitemapSections > div {
    width: 40%;
    margin-top: 40px;
  }
  uix-sitemap #settingsRow {
    float: none !important;
    justify-content: flex-start;
    margin-top: 20px !important;
    gap: 10px;
  }
}
@media screen and (max-width: 300px) {
  uix-sitemap #sitemapSections > div {
    width: 100%;
    text-align: center;
    margin: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 380px) {
  uix-sitemap #sitemapSections > div {
    text-align: center;
  }
  uix-sitemap #sitemapTitle {
    justify-content: center;
    display: flex;
  }
  uix-sitemap #settingsRow {
    margin-top: 20px !important;
    flex-direction: column;
  }
}
uix-sitemap #sitemapLink {
  position: absolute;
  right: 10px;
  top: 0px;
  font-size: large;
}
uix-sitemap #sitemapLink {
  color: var(--text) !important;
  transition: color 0.2s;
}
uix-sitemap #sitemapLink:hover {
  color: var(--text_highlight) !important;
}
uix-sitemap #settingsRow {
  display: flex;
  align-items: center;
  float: right;
  margin-top: -20px;
}
uix-sitemap #settingsRow .dropdown {
  width: 100% !important;
}
uix-sitemap #settingsRow > div {
  display: flex;
  background-color: var(--bg_content_dark);
  border: 1px solid rgba(171, 171, 171, 0.19);
  border-radius: 5px;
  margin-left: 5px;
}
uix-sitemap #settingsRow > div > span {
  margin-left: 7px;
  margin-right: 4px;
}
uix-sitemap #appearanceToggle {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 2px 8px;
}
