@import "/OpenSans/OpenSans.css";

:root {
  --background-primary: #fdfeff;
  --background-secondary: #eef0f0;
  --background-hover: rgba(50 51 52 / 0.075);
  --background-active: rgba(50 51 52 / 0.1);
  --background-input: rgba(50 51 52 / 0.075);
  --background-input-solid: #eef0f0;
  --font-primary: #2d2e2f;
  --font-primary-dark: #2d2e2f;
  --font-secondary: #3d3e3f;
  --font-tertiary: #5d5e5f;
  --font-label: rgba(0 0 0 / 0.65);
  --font-error: #F50000;
  --theme-color: #206AC0;
  --theme-color-opaque: #206AC050;
  --standard-duration: 0.1s;
}
@media (prefers-color-scheme: dark) {
  :root {
    --background-primary: #2d2e2f;
    --background-secondary: #3d3e3f;
    --background-hover: rgba(255 255 255 / 0.05);
    --background-active: rgba(255 255 255 / 0.075);
    --background-input: rgba(250 251 252 / 0.075);
    --background-input-solid: #3c3e3e;
    --font-primary: #fdfeff;
    --font-primary-dark: #2d2e2f;
    --font-secondary: #edeeef;
    --font-tertiary: #cdcecf;
    --font-label: rgba(255 255 255 / 0.65);
    --font-error: #F50000;
    --theme-color: #206AC0;
    --theme-color-opaque: #206AC050;
  }
}
* {
  position: relative;
  top: 0px;
  left: 0px;
  width: auto;
  height: auto;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12pt;
  border: none;
  -webkit-tap-highlight-color: transparent;
  color: var(--font-primary);
}
html {
  width: 100%;
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  background: var(--background-primary);
  width: 100%;
  height: auto;
  min-height: 100%;
  overflow: auto;
  cursor: default;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  white-space: break-spaces;
}
body > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.main {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article {
  padding: 0px max(calc(50% - 450px), 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.p-v-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.p-v-63 {
  padding-top: 63px;
  padding-bottom: 63px;
}
.section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gap-3 {
  gap: 3px;
}
.gap-6 {
  gap: 6px;
}
.gap-9 {
  gap: 9px;
}
.gap-12 {
  gap: 12px;
}
.gap-18 {
  gap: 18px;
}

.space-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}

.h1 {
  font-size: 24pt;
  color: var(--font-primary);
  font-weight: 600;
}
.h2 {
  font-size: 15pt;
  color: var(--font-primary);
  font-weight: 600;
}
.clickable {
  cursor: pointer;
}

.p {
  font-size: 15pt;
  color: var(--font-secondary);
}
.center {
  text-align: center;
}

.grid {
  display: grid;
}
.grid-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.lsn {
  list-style: none;
}

.header {
  position: sticky;
  width: 100%;
  height: 63px;
  background: linear-gradient(to bottom, var(--background-primary), transparent);
  display: flex;
  align-items: center;
  padding: 0px max(calc(50% - 450px), 12px);
  z-index: 2;
  justify-content: space-between;
}
.header::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  mask: linear-gradient(to bottom, black, transparent);
  -webkit-mask: linear-gradient(to bottom, black, transparent);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.flex-row {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.visually-hidden {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
*[data-sr-only="true"] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
}