:root {
  --bg: #ffffff;
  --fg: #0f172a;
  /* slate-900 */
  --muted: #475569;
  /* slate-600 */
  --border: #e2e8f0;
  /* slate-200 */
  --accent: #0ea5e9;
  /* sky-500 */
  --card: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220;
    --fg: #e6edf6;
    --muted: #a8b3cf;
    --border: #1f2a44;
    --accent: #38bdf8;
    --card: #0f172a;
  }
}
img,
video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", serif;
}

li {
  list-style: none;
  margin: 0px;
}

body {
  text-align: center;
  height: 100vh;
}

button {
  cursor: pointer;
  outline: none;
  padding: 10px;
  border-radius: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  background-color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

.app-btn {
  background-color: #09B109;
  color: white;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 24px rgba(9, 177, 9, 0.6), inset 0 4px 4px rgba(255, 255, 255, 0.25);
  padding: 7px 14px;
  font-weight: 500;
  font-size: 12px;
}
.app-btn span {
  font-size: 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: linear-gradient(to bottom, rgb(178, 238, 178), white);
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .image {
  width: 45px;
  height: 45px;
}
header .support {
  width: 26px;
  height: 24px;
}
header .support img {
  width: 26px;
  height: 24px;
}

.header-with-border {
  border-bottom: 1px solid rgba(176, 176, 176, 0.3);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 1000;
}

.header-without-border {
  border: none;
  box-shadow: none;
  z-index: 0;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 10px 16px;
  margin: 5rem auto;
}
.content main {
  display: flex;
  flex-direction: column;
  padding: 12px 0 64px;
}
.content main .toc {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin: 8px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content main .toc h2 {
  font-size: 16px;
  margin: 0 0 8px;
}
.content main .toc ul {
  margin: 0;
  padding-left: 18.5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content main .toc a {
  color: var(--muted);
}
.content main .toc a:hover {
  color: rgb(178, 238, 178);
  text-decoration: underline;
}
.content main section {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.content main section:last-of-type {
  border-bottom: none;
}
.content main section span {
  color: #09B109;
}
.content main section ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  margin: 10px 0px;
}

.brand {
  font-weight: 700;
}

.hide {
  display: none;
}

@media only screen and (min-width: 768px) {
  .app-btn {
    padding: 7px 20px;
    font-size: 1.3rem;
  }
  header {
    padding: 2vh 5%;
  }
  header .support {
    display: flex;
    align-items: center;
    gap: 8px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  header .support img {
    width: 26px;
    height: 24px;
  }
  header .support h3 {
    display: block;
    font-size: 21.6px;
    letter-spacing: -4%;
    font-weight: 600;
  }
  header > div:last-child {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  header > div:last-child a {
    display: flex;
  }
  .content {
    margin: 6rem 10%;
  }
  .content main section ul {
    align-items: center;
  }
}/*# sourceMappingURL=privacy_policy.css.map */