
  

  
  @property --red {
  syntax: "<color>";
  inherits: true;
  initial-value: #ff1414;
}
@property --green {
  syntax: "<color>";
  inherits: true;
  initial-value: #84ff38;
}
@property --yellow {
  syntax: "<color>";
  inherits: true;
  initial-value: #fffb14;
}
@property --gray-100 {
  syntax: "<color>";
  inherits: true;
  initial-value: #f2f2f2;
}
@property --gray-200 {
  syntax: "<color>";
  inherits: true;
  initial-value: #f0f0f0;
}
@property --gray-300 {
  syntax: "<color>";
  inherits: true;
  initial-value: #e6e6e6;
}
@property --gray-400 {
  syntax: "<color>";
  inherits: true;
  initial-value: #d6d6d6;
}
@property --gray-500 {
  syntax: "<color>";
  inherits: true;
  initial-value: #cccccc;
}
@property --gray-600 {
  syntax: "<color>";
  inherits: true;
  initial-value: #c4c4c4;
}
@property --gray-700 {
  syntax: "<color>";
  inherits: true;
  initial-value: #b0b0b0;
}
@property --text-color {
  syntax: "<color>";
  inherits: true;
  initial-value: #000000;
}
@property --surface-dark {
  syntax: "<color>";
  inherits: true;
  initial-value: #000000;
}
@property --surface-light {
  syntax: "<color>";
  inherits: true;
  initial-value: #ffffff;
}

  :host, :root {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #f2f2f2;
  --gray-200: #f0f0f0;
  --gray-300: #e6e6e6;
  --gray-400: #d6d6d6;
  --gray-500: #cccccc;
  --gray-600: #c4c4c4;
  --gray-700: #b0b0b0;
  --text-color: #000000;
  --surface-dark: #000000;
  --surface-light: #ffffff;
}
  @media (prefers-color-scheme: dark) {
      :host, :root {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #1c1c1c;
  --gray-200: #242424;
  --gray-300: #2c2c2c;
  --gray-400: #383838;
  --gray-500: #4d4d4d;
  --gray-600: #666666;
  --gray-700: #8c8c8c;
  --text-color: #ffffff;
  --surface-dark: #ffffff;
  --surface-light: #121212;
}
    }
  @media (prefers-color-scheme: light) {
      :host, :root {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #f2f2f2;
  --gray-200: #f0f0f0;
  --gray-300: #e6e6e6;
  --gray-400: #d6d6d6;
  --gray-500: #cccccc;
  --gray-600: #c4c4c4;
  --gray-700: #b0b0b0;
  --text-color: #000000;
  --surface-dark: #000000;
  --surface-light: #ffffff;
}
    }
  [data-nc-theme~="Dark"] {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #1c1c1c;
  --gray-200: #242424;
  --gray-300: #2c2c2c;
  --gray-400: #383838;
  --gray-500: #4d4d4d;
  --gray-600: #666666;
  --gray-700: #8c8c8c;
  --text-color: #ffffff;
  --surface-dark: #ffffff;
  --surface-light: #121212;
}
[data-nc-theme~="Light"] {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #f2f2f2;
  --gray-200: #f0f0f0;
  --gray-300: #e6e6e6;
  --gray-400: #d6d6d6;
  --gray-500: #cccccc;
  --gray-600: #c4c4c4;
  --gray-700: #b0b0b0;
  --text-color: #000000;
  --surface-dark: #000000;
  --surface-light: #ffffff;
}
[data-nc-theme~="Danish"] {
  --red: #ff1414;
  --green: #ffffff;
  --yellow: #ffffff;
  --gray-100: #6b000d;
  --gray-200: #990013;
  --gray-300: #4a0009;
  --gray-400: #78000f;
  --gray-500: #b80018;
  --gray-600: #ffb3ba;
  --gray-700: #ffffff;
  --text-color: #ffffff;
  --surface-dark: #ffffff;
  --surface-light: #380007;
}
[data-nc-theme~="Default"] {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #f2f2f2;
  --gray-200: #f0f0f0;
  --gray-300: #e6e6e6;
  --gray-400: #d6d6d6;
  --gray-500: #cccccc;
  --gray-600: #c4c4c4;
  --gray-700: #b0b0b0;
  --text-color: #000000;
  --surface-dark: #000000;
  --surface-light: #ffffff;
}
    


@layer base {
  
  body, :host {
    /* Color */
    
    /* Fonts */
    --font-sans: 'Inter Tight',sans-serif;
--font-Instrument Serif: 'Instrument Serif',serif;
--font-Fira Mono: 'Fira Mono',monospace;

    /* Font size */
    
    /* Font weight */
    
    /* Shadows */
    
    /* Border radius */
    
    /* Spacing */
    
    /* Z-index */
    
  }
  @keyframes animation-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes animation-fade-in {
    from {
      opacity:0;
    }
    to {
      opacity:1;
    }
  }
  @keyframes animation-fade-out {
    from {
      opacity:1;
    }
    to {
      opacity:0;
    }
  }
}


    .fAOYNf {
      color:var(--text-color);
      width:100%;
      height:auto;
      display:flex;
      font-size:inherit;
      background:var(--gray-300);
      min-height:100vh;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:160px;
      padding-left:128px;
      padding-right:128px;
      flex-direction:column;
      justify-content:flex-start;
    }

    @media (max-width: 1024px) {

    .fAOYNf {
      padding-left:32px;
      padding-right:32px;
    }
    }

    @media (max-width: 640px) {

    .fAOYNf {
      padding-top:166px;
      padding-left:0px;
      padding-right:0px;
      padding-bottom:48px;
    }
    }

    .PPrGW {
      color:inherit;
      display:flex;
      row-gap:16px;
      font-size:1.125rem;
      max-width:720px;
      column-gap:16px;
      font-family:inherit;
      font-weight:inherit;
      line-height:1.6;
      flex-direction:column;
    }

    .eyBNbU {
      height:100%;
      max-width:960px;
      animation-name:animation-dnoVFo;
      animation-delay:0ms;
      animation-duration:2s;
      animation-direction:normal;
      animation-fill-mode:forwards;
      animation-play-state:running;
      animation-iteration-count:1;
      animation-timing-function:cubic-bezier(0.42, 0, 0.58, 1);
    }

    @keyframes animation-dnoVFo {
        0% {
          opacity: 0;
        }

        0% {
          translate: 96px 0px 0;
        }

        100% {
          translate: 0px 0 0;
        }
    }

    .bRAAcW {
      color:inherit;
      width:fit-content;
      cursor:pointer;
      height:auto;
      display:flex;
      row-gap:8px;
      font-size:1rem;
      background:transparent;
      column-gap:8px;
      margin-top:24px;
      align-items:center;
      font-weight:inherit;
      padding-top:16px;
      user-select:none;
      border-color:var(--gray-700);
      border-style:solid;
      border-width:1px;
      padding-left:32px;
      padding-right:32px;
      flex-direction:row;
      padding-bottom:16px;
      justify-content:center;
      text-decoration-line:none;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
      -webkit-tap-highlight-color:transparent;
    }

    .bRAAcW:hover {
      color:#ffffff;
      background:var(--red);
      border-color:var(--red);
      border-style:solid;
      border-width:1px;
    }

    .bRAAcW:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    .WEuTD {
      color:inherit;
      width:100%;
      height:auto;
      display:flex;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .eNDeXm {
      color:inherit;
      display:block;
      font-size:clamp(1.75rem, 4cqw, 3rem);
      font-style:italic;
      font-family:"Instrument Serif";
      font-weight:400;
      line-height:1.1;
      flex-direction:column;
    }

    .mbrKP {
      color:inherit;
      display:block;
      font-size:inherit;
      font-weight:inherit;
      line-height:inherit;
      flex-direction:column;
    }

    .bxnfrN {
      color:inherit;
      display:block;
      font-size:32px;
      margin-top:32px;
      font-weight:inherit;
      line-height:40px;
      flex-direction:column;
    }

    .fuIRdx {
      top:0px;
      left:0px;
      color:inherit;
      width:100%;
      display:flex;
      z-index:2;
      position:fixed;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .fqEAoM {
      color:inherit;
      cursor:pointer;
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:12px;
      user-select:none;
      padding-left:12px;
      padding-right:12px;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:flex-start;
      text-decoration-line:none;
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      border-bottom-left-radius:8px;
      border-bottom-right-radius:8px;
      -webkit-tap-highlight-color:transparent;
    }

    .fqEAoM:hover {
      color:#ffffff;
      background:var(--red);
    }

    .fqEAoM:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    @media (max-width: 1080px) {

    .fqEAoM {
      display:none;
    }
    }

    .fzxCQH {
      top:calc(100% + 12px);
      color:var(--surface-dark);
      right:0px;
      display:flex;
      row-gap:4px;
      z-index:2;
      position:absolute;
      font-size:1rem;
      min-width:256px;
      background:var(--surface-light);
      box-shadow:0 12px 32px rgba(0, 0, 0, 0.16);
      font-family:"Inter Tight";
      font-weight:inherit;
      padding-top:8px;
      user-select:none;
      border-color:var(--gray-700);
      border-style:solid;
      border-width:1px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:column;
      padding-bottom:8px;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
    }

    @media (max-width: 640px) {

    .fzxCQH {
      min-width:256px;
    }
    }

    .bxRcOh {
      color:inherit;
      display:flex;
      position:relative;
      font-size:inherit;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    .dfdwBi {
      color:inherit;
      display:none;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .crqvfC {
      color:inherit;
      width:max-content;
      display:flex;
      animation:gddMarquee 30s linear infinite;
      flex-wrap:nowrap;
      font-size:inherit;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      will-change:transform;
      flex-direction:row;
      justify-content:flex-start;
    }

    .coAyYT {
      top:0px;
      left:0px;
      color:inherit;
      right:0px;
      bottom:0px;
      display:flex;
      z-index:1;
      position:fixed;
      font-size:inherit;
      background:transparent;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .eGWfpv {
      color:inherit;
      cursor:pointer;
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:12px;
      user-select:none;
      padding-left:12px;
      padding-right:12px;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:flex-start;
      text-decoration-line:none;
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      border-bottom-left-radius:8px;
      border-bottom-right-radius:8px;
      -webkit-tap-highlight-color:transparent;
    }

    .eGWfpv:hover {
      color:#ffffff;
      background:var(--red);
    }

    .eGWfpv:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    .frjvbz {
      color:inherit;
      display:flex;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .cbRmbi {
      color:inherit;
      display:flex;
      row-gap:16px;
      flex-wrap:nowrap;
      font-size:inherit;
      column-gap:16px;
      align-items:center;
      flex-shrink:0;
      font-family:inherit;
      font-weight:inherit;
      white-space:nowrap;
      padding-right:16px;
      flex-direction:row;
      justify-content:flex-start;
    }

    .dmISnA {
      color:var(--surface-dark);
    }

    .bMuxup {
      width:100%;
      background:var(--surface-light);
      align-items:center;
      padding-top:12px;
      padding-left:24px;
      padding-right:24px;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:space-between;
    }

    .dOlPHy {
      color:var(--surface-light);
      row-gap:8px;
      column-gap:8px;
      align-items:center;
      flex-direction:row;
      text-transform:capitalize;
      justify-content:flex-start;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
    }

    .rYiBP {
      color:var(--surface-light);
      display:flex;
      row-gap:4px;
      font-size:inherit;
      column-gap:4px;
      align-items:center;
      font-family:"Inter Tight";
      font-weight:inherit;
      user-select:none;
      flex-direction:row;
      justify-content:flex-start;
    }

    .rYiBP:hover {
      color:var(--red);
      text-decoration-line:underline;
    }

    .rYiBP:focus-visible {
      text-decoration-line:underline;
    }

    .cREaIg {
      color:var(--surface-dark);
      row-gap:8px;
      font-size:32px;
      column-gap:8px;
      align-items:center;
      font-family:"Instrument Serif";
      flex-direction:row;
      text-transform:;
      justify-content:flex-start;
    }

    .bZXixh {
      color:var(--surface-dark);
      display:flex;
      outline:0px solid;
      row-gap:4px;
      font-size:inherit;
      column-gap:4px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      user-select:none;
      flex-direction:row;
      justify-content:flex-start;
    }

    .bZXixh:hover {
      color:var(--red);
      text-decoration-line:underline;
    }

    .bZXixh:focus-visible {
      text-decoration-line:underline;
    }

    .cleMVN {
      color:var(--surface-dark);
      width:56px;
      cursor:pointer;
      height:56px;
      display:flex;
      font-size:1rem;
      align-items:center;
      flex-shrink:0;
      font-family:inherit;
      font-weight:inherit;
      padding-top:0px;
      user-select:none;
      aspect-ratio:1 / 1;
      border-color:var(--gray-300);
      border-style:solid;
      border-width:1px;
      padding-left:0px;
      padding-right:0px;
      flex-direction:column;
      padding-bottom:0px;
      justify-content:center;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
      -webkit-tap-highlight-color:transparent;
    }

    @media (max-width: 640px) {

    .cleMVN {
      width:48px;
      height:48px;
    }
    }

    .cleMVN:hover {
      color:#ffffff;
      background:var(--red);
      border-color:var(--red);
      border-style:solid;
      border-width:1px;
    }

    .cleMVN:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    .cleMVN:disabled {
      cursor:not-allowed;
      opacity:0.5;
    }

    .cSkHkO {
      color:var(--surface-light);
    }

    .cuONzT {
      color:inherit;
      cursor:pointer;
      display:flex;
      outline:0px solid;
      font-size:inherit;
      font-style:italic;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
      -webkit-tap-highlight-color:transparent;
    }

    @media (max-width: 1080px) {

    .cuONzT {
      display:none;
    }
    }

    .cuONzT:hover {
      color:var(--red);
    }

    .cuONzT:focus-visible {
      text-decoration-line:underline;
    }

    .PciDw {
      color:#000000;
      row-gap:8px;
      background:var(--yellow);
      column-gap:8px;
      align-items:center;
      padding-top:4px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:4px;
      text-transform:capitalize;
      justify-content:flex-start;
    }

    .cMjfGu {
      row-gap:16px;
      column-gap:16px;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    @media (max-width: 1080px) {

    .cMjfGu {
      display:none;
    }
    }

    .cewdoi {
      color:var(--surface-light);
      display:none;
      overflow:hidden;
      font-size:inherit;
      background:var(--surface-dark);
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:16px;
      flex-direction:row;
      padding-bottom:16px;
      justify-content:flex-start;
    }

    @media (max-width: 1080px) {

    .cewdoi {
      display:flex;
    }
    }

    .cuAfOv {
      color:inherit;
      display:none;
      font-size:inherit;
      font-style:italic;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
      -webkit-tap-highlight-color:transparent;
    }

    @media (max-width: 1080px) {

    .cuAfOv {
      display:flex;
    }
    }

    .cuAfOv:hover {
      color:var(--red);
    }

    .cuAfOv:focus-visible {
      text-decoration-line:underline;
    }

    .epfTqW {
      color:inherit;
      display:flex;
      row-gap:16px;
      font-size:inherit;
      column-gap:16px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    .pCZUL {
      width:fit-content;
      cursor:pointer;
      height:auto;
      display:flex;
      font-size:1rem;
      align-items:center;
      padding-top:16px;
      user-select:none;
      border-color:var(--gray-300);
      border-style:solid;
      border-width:1px;
      padding-left:32px;
      padding-right:32px;
      padding-bottom:16px;
      justify-content:center;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
      -webkit-tap-highlight-color:transparent;
    }

    @media (max-width: 640px) {

    .pCZUL {
      width:48px;
      height:48px;
      padding-top:0px;
      padding-left:16px;
      padding-right:16px;
      padding-bottom:0px;
    }
    }

    .pCZUL:hover {
      color:#ffffff;
      background:#ff1414;
      border-color:#ff1414;
      border-style:solid;
      border-width:1px;
    }

    .pCZUL:focus-visible {
      outline:4px double #ff1414;
      outline-offset:2px;
    }

    .dcowEO {
      display:none;
    }

    @media (max-width: 640px) {

    .dcowEO {
      display:inline;
    }
    }

    .ehwOHk {
      display:inline;
      color:var(--text-color);
    }

    @media (max-width: 640px) {

    .ehwOHk {
      display:none;
    }
    }

    .QevA-D {
      color:var(--text-color);
    }

    .dSoEqZ {
      color:inherit;
      width:100%;
      display:flex;
      font-size:inherit;
      background:var(--gray-200);
      overflow-x:hidden;
      overflow-y:hidden;
      align-items:flex-start;
      font-family:inherit;
      font-weight:inherit;
      padding-top:144px;
      padding-left:32px;
      padding-right:32px;
      flex-direction:column;
      padding-bottom:48px;
      justify-content:flex-start;
      border-top-left-radius:24px;
      border-top-right-radius:24px;
      border-bottom-left-radius:24px;
      border-bottom-right-radius:24px;
    }

    @media (max-width: 640px) {

    .dSoEqZ {
      padding-top:32px;
      padding-left:20px;
      padding-right:20px;
      padding-bottom:32px;
    }
    }

    .dVirFj {
      flex:1;
      color:inherit;
      width:100%;
      display:flex;
      font-size:inherit;
      background:var(--gray-400);
      min-height:auto;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
      padding-bottom:128px;
      border-top-right-radius:32px;
    }

    .eGCRdP {
      color:inherit;
      display:flex;
      row-gap:1px;
      font-size:inherit;
      column-gap:1px;
      font-family:inherit;
      font-weight:inherit;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:column;
    }

    .eHbMzv {
      color:inherit;
      width:fit-content;
      display:flex;
      font-size:inherit;
      background:var(--gray-400);
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:column;
      padding-bottom:8px;
      justify-content:center;
      border-top-left-radius:32px;
      border-top-right-radius:32px;
      border-bottom-left-radius:0px;
      border-bottom-right-radius:0px;
    }

    .cEQCue {
      color:inherit;
      display:flex;
      font-size:24px;
      font-weight:300;
      padding-top:16px;
      user-select:none;
      padding-left:40px;
      padding-right:40px;
      flex-direction:column;
      padding-bottom:16px;
      border-top-left-radius:24px;
      border-top-right-radius:24px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
    }

    .cEOSyc {
      color:inherit;
      display:flex;
      font-size:inherit;
      align-items:flex-end;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    .bSzYPJ {
      left:0px;
      color:inherit;
      width:100%;
      bottom:0px;
      display:flex;
      row-gap:32px;
      z-index:1;
      position:fixed;
      font-size:inherit;
      background:var(--surface-light);
      column-gap:32px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:12px;
      padding-left:24px;
      padding-right:24px;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:space-between;
    }

    @media (max-width: 1080px) {

    .bSzYPJ {
      align-items:center;
      justify-content:flex-start;
    }
    }

    .NkjHf {
      color:inherit;
      display:flex;
      row-gap:42px;
      font-size:inherit;
      column-gap:42px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    @media (max-width: 1080px) {

    .NkjHf {
      display:none;
    }
    }

    .efwBZY {
      color:var(--surface-dark);
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      align-items:center;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    .vHOkr {
      color:inherit;
      display:flex;
      row-gap:24px;
      font-size:inherit;
      column-gap:24px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    @media (max-width: 1080px) {

    .vHOkr {
      width:100%;
      align-items:center;
      justify-content:center;
    }
    }

    .ddvpFK {
      color:var(--surface-dark);
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      align-items:center;
      font-weight:inherit;
      flex-direction:row;
      text-transform:capitalize;
      justify-content:flex-start;
    }

    .bVsajq {
      color:inherit;
      width:12px;
      height:12px;
      display:block;
      font-size:inherit;
      transform:translateX(var(--thumbX));
      background:var(--surface-dark);
      transition:transform 200ms ease;
      font-family:inherit;
      font-weight:inherit;
      border-radius:100px;
      flex-direction:row;
    }

    .bottombar\:visitLink {
      width:auto;
      height:40px;
      padding-left:16px;
      padding-right:16px;
      -webkit-tap-highlight-color:transparent;
    }

    .dLPtue {
      color:inherit;
      width:32px;
      cursor:pointer;
      height:16px;
      display:flex;
      font-size:inherit;
      background:var(--gray-400);
      transition:background 200ms ease;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-left:2px;
      padding-right:2px;
      flex-direction:row;
      justify-content:flex-start;
      border-top-left-radius:100px;
      border-top-right-radius:100px;
      border-bottom-left-radius:100px;
      border-bottom-right-radius:100px;
      -webkit-tap-highlight-color:transparent;
    }

    .dLPtue:hover {
      background:var(--gray-500);
    }

    .dmcDKV {
      color:inherit;
      display:inline-block;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      user-select:none;
      flex-direction:column;
    }

    .fzQVql {
      color:inherit;
      width:12px;
      height:12px;
      display:block;
      font-size:inherit;
      transform:translateX(var(--danishThumbX));
      background:var(--surface-dark);
      transition:transform 200ms ease;
      font-family:inherit;
      font-weight:inherit;
      border-radius:100px;
      flex-direction:row;
    }

    .eYdQla {
      color:inherit;
      display:inline-block;
      font-size:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .IklXd {
      color:var(--surface-dark);
      display:inline-block;
      font-size:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .cNGeby {
      color:var(--gray-700);
      display:block;
      font-size:1.25rem;
      font-style:italic;
      margin-top:8px;
      font-family:"Instrument Serif";
      font-weight:400;
      line-height:inherit;
      flex-direction:column;
    }

    .cwiPIr {
      color:var(--gray-700);
      display:block;
      font-size:32px;
      font-style:italic;
      margin-top:16px;
      font-family:"Instrument Serif";
      font-weight:400;
      flex-direction:column;
    }

    .bwsxON {
      color:inherit;
      width:24px;
      height:24px;
      display:flex;
      font-size:inherit;
      background:var(--gray-300);
      font-family:inherit;
      font-weight:inherit;
      margin-left:-12px;
      margin-bottom:8px;
      flex-direction:column;
      border-top-left-radius:100px;
      border-top-right-radius:100px;
      border-bottom-left-radius:100px;
      border-bottom-right-radius:100px;
    }

    .crTPGM {
      color:inherit;
      width:12px;
      height:12px;
      display:flex;
      font-size:inherit;
      background:var(--gray-400);
      font-family:inherit;
      font-weight:inherit;
      margin-bottom:8px;
      flex-direction:column;
    }

    .fhKsSb {
      color:inherit;
      width:100%;
      display:flex;
      font-size:inherit;
      align-items:flex-end;
      font-family:inherit;
      font-weight:inherit;
      margin-bottom:-8px;
      flex-direction:row;
      justify-content:flex-start;
    }

    .nOcrD {
      position:absolute;
    }

    .bkjjVn {
      color:inherit;
      width:100%;
      display:flex;
      font-size:inherit;
      min-height:420px;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .erhxLr {
      color:inherit;
      width:100%;
      height:420px;
      display:flex;
      overflow:hidden;
      position:relative;
      font-size:inherit;
      min-height:420px;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .AboutPage\:JCudPP37BB0o5cYmqFK9N {
      top:442px;
      scale:3 3 1;
      rotate:0 0 1 10deg;
      opacity:0.05;
      position:absolute;
    }