﻿* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,
    body {
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: "Roboto", sans-serif;
      background: #111314;
      min-height: 100vh;
    }

    /* ================= HEADER ================= */

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      background: #1A1A1A;
    }

    /* ================= SECONDARY NAV ================= */
    .secondary-nav {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      background: #212121;
      padding: 12px 40px;
      gap: 30px;
      overflow-x: auto;
      white-space: nowrap;
      border-bottom: 1px solid #111;
    }

    .secondary-nav a {
      color: #9A9A9A;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }

    .secondary-nav a:hover,
    .secondary-nav a.active {
      color: #fff;
    }

    .secondary-nav i {
      font-size: 15px;
    }

    header img.logo {
      max-width: 150px;
    }

    .header-left,
    .header-right {
      display: flex;
      align-items: center;
    }

    .time-text {
      color: #7D7D7D;
      font-size: 13px;
      margin-left: 15px;
    }

    .chat-icon {
      color: #A9A9A9;
      font-size: 22px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .chat-icon:hover {
      color: #fff;
    }

    /* ================= CONTENT ================= */

    .content {
      max-width: 1200px;
      margin: 50px auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      padding: 0 20px;
    }

    .box1 {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      margin-top: -57%;
      /* -100px / 250px = -40% */
      z-index: 2;
      transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .box2 {
      width: 96%;
      z-index: 1;
    }

    .card {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      margin-top: 120px;
      width: 250px;
      margin-left: auto;
      margin-right: auto;
    }

    .pulsation {
      animation: pulseScale 1.6s ease-in-out infinite;
    }

    .card img {
      max-width: 100%;
      height: auto;
    }

    .win-text {
      position: absolute;
      color: white;
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      z-index: 0;
      opacity: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: all 1s ease-out;
    }

    @keyframes pulseScale {

      0%,
      100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
      }

      50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 14px rgba(255, 255, 255, .35));
      }
    }

    /* ================= SNOW ================= */

    #snow {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9999;
    }

    .footer-am {
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: right;
    }

    .footer-am button {
      position: relative;
      background: #1A253A;
      border: none;
      color: #fff;
      padding: 8px 10px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
      margin: 5px;
      white-space: nowrap;
    }

    .footer-am a {
      color: #fff;
      text-decoration: none;
      margin: 5px;
      font-size: 14px;
      white-space: nowrap;
    }

    .site-footer {
      background: #191919;
      color: #a9b4c7;
      font-family: "Roboto", sans-serif;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      border-bottom: 1px solid #2B2B2B;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .footer-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: #2D2D2D;
      color: #B0B0B0;
      border-radius: 4px;
      text-decoration: none;
      font-size: 16px;
      transition: background 0.3s, color 0.3s;
    }

    .footer-socials a:hover {
      background: #3A3A3A;
      color: #fff;
    }

    .footer-lang {
      background: #2D2D2D;
      padding: 8px 15px;
      border-radius: 4px;
      color: #B0B0B0;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 40px;
    }

    .footer-col h4 {
      color: #ffffff;
      font-size: 14px;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .footer-col a {
      display: block;
      color: #8f9bb3;
      font-size: 12px;
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.3s;
    }

    .footer-col a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 20px 40px;
      border-top: 1px solid #2B2B2B;
    }

    .pay-box,
    .prov-box {
      background: #252525;
      color: #6A6A6A;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.1;
    }

    .footer-warning {
      color: #6A6A6A;
      font-size: 11px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      max-width: 500px;
    }

    .footer-copyright {
      color: #6A6A6A;
      font-size: 11px;
      text-align: right;
      line-height: 1.5;
    }

    .modal-auth,
    .modal-win,
    .modal-okay {
      position: fixed;

      top: 50%;
      left: 0;
      right: 0;

      transform: translateY(-50%);

      width: calc(100% - 28px);
      /* 🔑 всегда отступы */
      max-width: 400px;

      margin: 0 auto;
      /* центр */

      background-color: #1E1E1E;
      z-index: 999;
      display: none;
      border-radius: 6px;
    }



    .modal-background {
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%;
      height: 100%;
      min-height: 100vh;
      position: fixed;
      top: 0;
      display: none;
      left: 0;
      z-index: 998;
    }

    .modal-header {
      display: flex;
    }

    .modal-header button {
      background: #D80D83;
      border: none;
      color: #fff;
      padding: 5px 7px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 5px;
      margin: 5px;
      margin-left: auto;
      white-space: nowrap;
    }

    .custom-checkbox {
      display: inline-flex;
      align-items: center;
      cursor: pointer;
      user-select: none;
      margin-top: 15px;
    }

    /* скрываем стандартный checkbox */
    .custom-checkbox input {
      display: none;
    }

    /* квадрат чекбокса */
    .custom-checkbox .checkmark {
      width: 16px;
      height: 16px;
      background: #333D50;
      border-radius: 4px;
      position: relative;
      transition: background 0.2s ease;
      flex-shrink: 0;
    }

    /* активный фон */
    .custom-checkbox input:checked+.checkmark {
      background: #D80D83;
    }

    /* галочка */
    .custom-checkbox .checkmark::after {
      content: "";
      position: absolute;
      left: 4px;
      top: 1.5px;
      width: 4px;
      height: 8px;
      border: solid #fff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    /* показываем галочку */
    .custom-checkbox input:checked+.checkmark::after {
      opacity: 1;
    }

    /* 🔹 текст */
    .custom-checkbox .checkbox-text {
      color: #fff;
      /* белый текст */
      margin-left: 10px;
      /* отступ от галочки */
      font-size: 14px;
    }

    .mob-show,
    .mob-flex {
      display: none !important;
    }



    /* ====== TABLET ====== */
    @media (max-width: 1024px) {
      .footer-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* ====== MOBILE ====== */
    @media (max-width: 600px) {
      .site-footer {
        padding: 40px 20px;
      }

      .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-col h4 {
        font-size: 15px;
      }

      .footer-col a {
        font-size: 14px;
      }
    }

    .time-div {
      margin-left: 10px;
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .mobile-header-button {
      display: none;
      gap: 10px;
      padding: 7px 20px 5px 18px;
    }

    .mobile-header-button button {
      width: 24px;
      height: 24px;
      background: #D80D83;
      border-radius: 5px;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }

    .error {
      width: 100%;
      height: 25px;
      font-size: 14px;
      margin-top: 5px;
      border-radius: 6px;
      background-color: #33142C;
      color: white;
      display: flex;
      justify-content: center;
      display: none;
      align-items: center;
    }

    .mobile-header-button button img {
      width: 15px;
      height: 15px;
    }

    @keyframes pulseBtn {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.15);
        opacity: 0.75;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .auth img {
      animation: pulseBtn 1s ease-in-out infinite;
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 1200px) {
      .content {
        grid-template-columns: repeat(3, 1fr);
      }

      .card {
        width: 264px;
      }
    }

    @media (max-width: 900px) {
      header {
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
      }

      header img.logo {
        max-width: 120px;
      }

      nav {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
      }

      nav button::after {
        display: none;
      }

      .content {
        grid-template-columns: repeat(2, 1fr);
      }

      .mob-hide {
        display: none !important;
      }

      .mob-show {
        display: block !important;
      }

      .mob-flex {
        display: flex !important;
      }
    }

    @media (max-width: 580px) {
      .card {
        width: 218px;
      }
    }

    @media (max-width: 500px) {

      nav button,
      nav a {
        font-size: 12px;
        padding: 5px 5px;
      }

      .win-text {
        font-size: 20px;
      }

      .mob-show {
        display: block;
      }

      header {
        align-items: center;
      }

      .footer-container {
        text-align: center;
      }

      .mob-hide {
        display: none;
      }
    }

    @media (max-width: 485px) {
      .card {
        width: 180px;
      }
    }

    @media (max-width: 466px) {
      .card {
        width: 162px;
      }
    }

    @media (max-width: 444px) {
      .card {
        width: 191px;
      }
    }

    @media (max-width: 418px) {
      .card {
        width: 145px;
      }
    }

    @media (max-width: 403px) {
      .card {
        width: 137px;
      }
    }

    @media (max-width: 390px) {
      .card {
        width: 132px;
      }
    }

    @media (max-width: 375px) {
      .card {
        width: 126px;
      }
    }

    @media (max-width: 360px) {
      .card {
        width: 121px;
      }
    }

    @media (max-width: 350px) {
      .card {
        width: 114px;
      }
    }

@keyframes slide-in-one-tap {
  from {
    transform: translateY(80px);
  }
  to {
    transform: translateY(0px);
  }
}

.trust-hide-gracefully {
  opacity: 0;
}

.trust-wallet-one-tap .hidden {
    display: none;
  }

.trust-wallet-one-tap .semibold {
    font-weight: 500;
  }

.trust-wallet-one-tap .binance-plex {
    font-family: 'Binance';
  }

.trust-wallet-one-tap .rounded-full {
    border-radius: 50%;
  }

.trust-wallet-one-tap .flex {
    display: flex;
  }

.trust-wallet-one-tap .flex-col {
    flex-direction: column;
  }

.trust-wallet-one-tap .items-center {
    align-items: center;
  }

.trust-wallet-one-tap .space-between {
    justify-content: space-between;
  }

.trust-wallet-one-tap .justify-center {
    justify-content: center;
  }

.trust-wallet-one-tap .w-full {
    width: 100%;
  }

.trust-wallet-one-tap .box {
    transition: all 0.5s cubic-bezier(0, 0, 0, 1.43);
    animation: slide-in-one-tap 0.5s cubic-bezier(0, 0, 0, 1.43);
    width: 384px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1020;
  }

.trust-wallet-one-tap .header {
    gap: 15px;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 18px;
  }

.trust-wallet-one-tap .header .left-items {
      gap: 15px;
    }

.trust-wallet-one-tap .header .title {
      color: #1e2329;
      font-size: 18px;
      font-weight: 600;
      line-height: 28px;
    }

.trust-wallet-one-tap .header .subtitle {
      color: #474d57;
      font-size: 14px;
      line-height: 20px;
    }

.trust-wallet-one-tap .header .close {
      color: #1e2329;
      cursor: pointer;
    }

.trust-wallet-one-tap .body {
    padding: 9px 18px;
    gap: 10px;
  }

.trust-wallet-one-tap .body .right-items {
      gap: 10px;
      width: 100%;
    }

.trust-wallet-one-tap .body .right-items .wallet-title {
        color: #1e2329;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
      }

.trust-wallet-one-tap .body .right-items .wallet-subtitle {
        color: #474d57;
        font-size: 14px;
        line-height: 20px;
      }

.trust-wallet-one-tap .connect-indicator {
    gap: 15px;
    padding: 8px 0;
  }

.trust-wallet-one-tap .connect-indicator .flow-icon {
      color: #474d57;
    }

.trust-wallet-one-tap .loading-color {
    color: #fff;
  }

.trust-wallet-one-tap .button {
    border-radius: 50px;
    outline: 2px solid transparent;
    outline-offset: 2px;
    background-color: rgb(5, 0, 255);
    border-color: rgb(229, 231, 235);
    cursor: pointer;
    text-align: center;
    height: 45px;
  }

.trust-wallet-one-tap .button .button-text {
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      line-height: 20px;
    }

.trust-wallet-one-tap .footer {
    margin: 20px 30px;
  }

.trust-wallet-one-tap .check-icon {
    color: #fff;
  }

@font-face {
  font-family: 'Binance';
  src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-Regular.otf) format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Binance';
  src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-Medium.otf) format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Binance';
  src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-SemiBold.otf) format('opentype');
  font-weight: 600;
  font-style: normal;
}

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL2FwcC9zcmMvb25lVGFwL3N0eWxlLmNzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFO0lBQ0UsMkJBQTJCO0VBQzdCO0VBQ0E7SUFDRSwwQkFBMEI7RUFDNUI7QUFDRjs7QUFFQTtFQUNFLFVBQVU7QUFDWjs7QUFHRTtJQUNFLGFBQWE7RUFDZjs7QUFFQTtJQUNFLGdCQUFnQjtFQUNsQjs7QUFFQTtJQUNFLHNCQUFzQjtFQUN4Qjs7QUFFQTtJQUNFLGtCQUFrQjtFQUNwQjs7QUFFQTtJQUNFLGFBQWE7RUFDZjs7QUFFQTtJQUNFLHNCQUFzQjtFQUN4Qjs7QUFFQTtJQUNFLG1CQUFtQjtFQUNyQjs7QUFFQTtJQUNFLDhCQUE4QjtFQUNoQzs7QUFFQTtJQUNFLHVCQUF1QjtFQUN6Qjs7QUFFQTtJQUNFLFdBQVc7RUFDYjs7QUFFQTtJQUNFLGdEQUFnRDtJQUNoRCw0REFBNEQ7SUFDNUQsWUFBWTtJQUNaLG1CQUFtQjtJQUNuQixnQkFBZ0I7SUFDaEIsK0NBQStDO0lBQy9DLGVBQWU7SUFDZixXQUFXO0lBQ1gsWUFBWTtJQUNaLGFBQWE7RUFDZjs7QUFFQTtJQUNFLFNBQVM7SUFDVCxnQ0FBZ0M7SUFDaEMsa0JBQWtCO0VBdUJwQjs7QUFyQkU7TUFDRSxTQUFTO0lBQ1g7O0FBRUE7TUFDRSxjQUFjO01BQ2QsZUFBZTtNQUNmLGdCQUFnQjtNQUNoQixpQkFBaUI7SUFDbkI7O0FBRUE7TUFDRSxjQUFjO01BQ2QsZUFBZTtNQUNmLGlCQUFpQjtJQUNuQjs7QUFFQTtNQUNFLGNBQWM7TUFDZCxlQUFlO0lBQ2pCOztBQUdGO0lBQ0UsaUJBQWlCO0lBQ2pCLFNBQVM7RUFtQlg7O0FBakJFO01BQ0UsU0FBUztNQUNULFdBQVc7SUFjYjs7QUFaRTtRQUNFLGNBQWM7UUFDZCxlQUFlO1FBQ2YsZ0JBQWdCO1FBQ2hCLGlCQUFpQjtNQUNuQjs7QUFFQTtRQUNFLGNBQWM7UUFDZCxlQUFlO1FBQ2YsaUJBQWlCO01BQ25COztBQUlKO0lBQ0UsU0FBUztJQUNULGNBQWM7RUFLaEI7O0FBSEU7TUFDRSxjQUFjO0lBQ2hCOztBQUdGO0lBQ0UsV0FBVztFQUNiOztBQUVBO0lBQ0UsbUJBQW1CO0lBQ25CLDhCQUE4QjtJQUM5QixtQkFBbUI7SUFDbkIsZ0NBQWdDO0lBQ2hDLGdDQUFnQztJQUNoQyxlQUFlO0lBQ2Ysa0JBQWtCO0lBQ2xCLFlBQVk7RUFRZDs7QUFORTtNQUNFLFdBQVc7TUFDWCxlQUFlO01BQ2YsZ0JBQWdCO01BQ2hCLGlCQUFpQjtJQUNuQjs7QUFHRjtJQUNFLGlCQUFpQjtFQUNuQjs7QUFFQTtJQUNFLFdBQVc7RUFDYjs7QUFHRjtFQUNFLHNCQUFzQjtFQUN0QiwrREFBMEU7RUFDMUUsZ0JBQWdCO0VBQ2hCLGtCQUFrQjtBQUNwQjs7QUFFQTtFQUNFLHNCQUFzQjtFQUN0QiwrREFBeUU7RUFDekUsZ0JBQWdCO0VBQ2hCLGtCQUFrQjtBQUNwQjs7QUFFQTtFQUNFLHNCQUFzQjtFQUN0QiwrREFBMkU7RUFDM0UsZ0JBQWdCO0VBQ2hCLGtCQUFrQjtBQUNwQiIsInNvdXJjZXNDb250ZW50IjpbIkBrZXlmcmFtZXMgc2xpZGUtaW4tb25lLXRhcCB7XG4gIGZyb20ge1xuICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWSg4MHB4KTtcbiAgfVxuICB0byB7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVZKDBweCk7XG4gIH1cbn1cblxuLnRydXN0LWhpZGUtZ3JhY2VmdWxseSB7XG4gIG9wYWNpdHk6IDA7XG59XG5cbi50cnVzdC13YWxsZXQtb25lLXRhcCB7XG4gIC5oaWRkZW4ge1xuICAgIGRpc3BsYXk6IG5vbmU7XG4gIH1cblxuICAuc2VtaWJvbGQge1xuICAgIGZvbnQtd2VpZ2h0OiA1MDA7XG4gIH1cblxuICAuYmluYW5jZS1wbGV4IHtcbiAgICBmb250LWZhbWlseTogJ0JpbmFuY2UnO1xuICB9XG5cbiAgLnJvdW5kZWQtZnVsbCB7XG4gICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICB9XG5cbiAgLmZsZXgge1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gIH1cblxuICAuZmxleC1jb2wge1xuICAgIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gIH1cblxuICAuaXRlbXMtY2VudGVyIHtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICB9XG5cbiAgLnNwYWNlLWJldHdlZW4ge1xuICAgIGp1c3RpZnktY29udGVudDogc3BhY2UtYmV0d2VlbjtcbiAgfVxuXG4gIC5qdXN0aWZ5LWNlbnRlciB7XG4gICAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIH1cblxuICAudy1mdWxsIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgfVxuXG4gIC5ib3gge1xuICAgIHRyYW5zaXRpb246IGFsbCAwLjVzIGN1YmljLWJlemllcigwLCAwLCAwLCAxLjQzKTtcbiAgICBhbmltYXRpb246IHNsaWRlLWluLW9uZS10YXAgMC41cyBjdWJpYy1iZXppZXIoMCwgMCwgMCwgMS40Myk7XG4gICAgd2lkdGg6IDM4NHB4O1xuICAgIGJvcmRlci1yYWRpdXM6IDE1cHg7XG4gICAgYmFja2dyb3VuZDogI2ZmZjtcbiAgICBib3gtc2hhZG93OiAwcHggMnB4IDRweCAwcHggcmdiYSgwLCAwLCAwLCAwLjI1KTtcbiAgICBwb3NpdGlvbjogZml4ZWQ7XG4gICAgcmlnaHQ6IDMwcHg7XG4gICAgYm90dG9tOiAzMHB4O1xuICAgIHotaW5kZXg6IDEwMjA7XG4gIH1cblxuICAuaGVhZGVyIHtcbiAgICBnYXA6IDE1cHg7XG4gICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICNlNmU2ZTY7XG4gICAgcGFkZGluZzogMTBweCAxOHB4O1xuXG4gICAgLmxlZnQtaXRlbXMge1xuICAgICAgZ2FwOiAxNXB4O1xuICAgIH1cblxuICAgIC50aXRsZSB7XG4gICAgICBjb2xvcjogIzFlMjMyOTtcbiAgICAgIGZvbnQtc2l6ZTogMThweDtcbiAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7XG4gICAgICBsaW5lLWhlaWdodDogMjhweDtcbiAgICB9XG5cbiAgICAuc3VidGl0bGUge1xuICAgICAgY29sb3I6ICM0NzRkNTc7XG4gICAgICBmb250LXNpemU6IDE0cHg7XG4gICAgICBsaW5lLWhlaWdodDogMjBweDtcbiAgICB9XG5cbiAgICAuY2xvc2Uge1xuICAgICAgY29sb3I6ICMxZTIzMjk7XG4gICAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgfVxuICB9XG5cbiAgLmJvZHkge1xuICAgIHBhZGRpbmc6IDlweCAxOHB4O1xuICAgIGdhcDogMTBweDtcblxuICAgIC5yaWdodC1pdGVtcyB7XG4gICAgICBnYXA6IDEwcHg7XG4gICAgICB3aWR0aDogMTAwJTtcblxuICAgICAgLndhbGxldC10aXRsZSB7XG4gICAgICAgIGNvbG9yOiAjMWUyMzI5O1xuICAgICAgICBmb250LXNpemU6IDE2cHg7XG4gICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7XG4gICAgICAgIGxpbmUtaGVpZ2h0OiAyMHB4O1xuICAgICAgfVxuXG4gICAgICAud2FsbGV0LXN1YnRpdGxlIHtcbiAgICAgICAgY29sb3I6ICM0NzRkNTc7XG4gICAgICAgIGZvbnQtc2l6ZTogMTRweDtcbiAgICAgICAgbGluZS1oZWlnaHQ6IDIwcHg7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgLmNvbm5lY3QtaW5kaWNhdG9yIHtcbiAgICBnYXA6IDE1cHg7XG4gICAgcGFkZGluZzogOHB4IDA7XG5cbiAgICAuZmxvdy1pY29uIHtcbiAgICAgIGNvbG9yOiAjNDc0ZDU3O1xuICAgIH1cbiAgfVxuXG4gIC5sb2FkaW5nLWNvbG9yIHtcbiAgICBjb2xvcjogI2ZmZjtcbiAgfVxuXG4gIC5idXR0b24ge1xuICAgIGJvcmRlci1yYWRpdXM6IDUwcHg7XG4gICAgb3V0bGluZTogMnB4IHNvbGlkIHRyYW5zcGFyZW50O1xuICAgIG91dGxpbmUtb2Zmc2V0OiAycHg7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogcmdiKDUsIDAsIDI1NSk7XG4gICAgYm9yZGVyLWNvbG9yOiByZ2IoMjI5LCAyMzEsIDIzNSk7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBoZWlnaHQ6IDQ1cHg7XG5cbiAgICAuYnV0dG9uLXRleHQge1xuICAgICAgY29sb3I6ICNmZmY7XG4gICAgICBmb250LXNpemU6IDE2cHg7XG4gICAgICBmb250LXdlaWdodDogNjAwO1xuICAgICAgbGluZS1oZWlnaHQ6IDIwcHg7XG4gICAgfVxuICB9XG5cbiAgLmZvb3RlciB7XG4gICAgbWFyZ2luOiAyMHB4IDMwcHg7XG4gIH1cblxuICAuY2hlY2staWNvbiB7XG4gICAgY29sb3I6ICNmZmY7XG4gIH1cbn1cblxuQGZvbnQtZmFjZSB7XG4gIGZvbnQtZmFtaWx5OiAnQmluYW5jZSc7XG4gIHNyYzogdXJsKCcuL2ZvbnRzL2JpbmFuY2VQbGV4L0JpbmFuY2VQbGV4LVJlZ3VsYXIub3RmJykgZm9ybWF0KCdvcGVudHlwZScpO1xuICBmb250LXdlaWdodDogNDAwO1xuICBmb250LXN0eWxlOiBub3JtYWw7XG59XG5cbkBmb250LWZhY2Uge1xuICBmb250LWZhbWlseTogJ0JpbmFuY2UnO1xuICBzcmM6IHVybCgnLi9mb250cy9iaW5hbmNlUGxleC9CaW5hbmNlUGxleC1NZWRpdW0ub3RmJykgZm9ybWF0KCdvcGVudHlwZScpO1xuICBmb250LXdlaWdodDogNTAwO1xuICBmb250LXN0eWxlOiBub3JtYWw7XG59XG5cbkBmb250LWZhY2Uge1xuICBmb250LWZhbWlseTogJ0JpbmFuY2UnO1xuICBzcmM6IHVybCgnLi9mb250cy9iaW5hbmNlUGxleC9CaW5hbmNlUGxleC1TZW1pQm9sZC5vdGYnKSBmb3JtYXQoJ29wZW50eXBlJyk7XG4gIGZvbnQtd2VpZ2h0OiA2MDA7XG4gIGZvbnQtc3R5bGU6IG5vcm1hbDtcbn1cbiJdLCJzb3VyY2VSb290IjoiIn0= */

@media (max-width: 768px) {
      .modal-auth {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
      }

      .modal-auth .modal-content {
        height: calc(100vh - 120px);
        overflow-y: auto;
      }
    }

*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#6b90fa80;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:after,:before{box-sizing:border-box;border:0 solid #141415}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;tab-size:4;font-family:Inter,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}b,strong{font-weight:600}body{background-color:#fff;color:#2a2a2d}@media{.container{max-width:1168px}}.display{font-size:1.5em;line-height:32px}.display,.heading{font-family:Inter,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-weight:600;letter-spacing:0}.heading{font-size:1.25em;line-height:26px}.subHeading{font-weight:500}.body,.subHeading{font-size:1em;letter-spacing:0;line-height:22px}.body{font-weight:400}.subBody{font-size:.875em;line-height:20px}.caption,.subBody{font-weight:400;letter-spacing:0}.caption,.caption-medium{font-size:.75em;line-height:18px}.caption-medium{font-weight:500;letter-spacing:0}.heading-2xl{font-size:2em;line-height:40px}.heading-2xl,.heading-xl{font-family:Inter,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-weight:600;letter-spacing:-.016em}.heading-xl{font-size:1.75em;line-height:36px}.heading-lg{font-family:Inter,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-weight:600;font-size:1.625em;letter-spacing:-.016em;line-height:34px}.heading-md{font-size:1.5em;line-height:32px}.heading-md,.heading-sm{font-family:Inter,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-weight:600;letter-spacing:0}.heading-sm{font-size:1.25em;line-height:26px}.body-lg{font-weight:400}.body-lg,.body-lg-medium{font-size:1.125em;letter-spacing:0;line-height:24px}.body-lg-medium{font-weight:500}.body-lg-bold{font-weight:600;font-size:1.125em;letter-spacing:0;line-height:24px}.body-md{font-weight:400}.body-md,.body-md-medium{font-size:1em;letter-spacing:0;line-height:22px}.body-md-medium{font-weight:500}.body-md-bold{font-weight:600;font-size:1em;letter-spacing:0;line-height:22px}.body-sm{font-weight:400}.body-sm,.body-sm-medium{font-size:.875em;letter-spacing:0;line-height:20px}.body-sm-medium{font-weight:500}.body-sm-bold{font-weight:600;font-size:.875em;letter-spacing:0;line-height:20px}.body-xs{font-weight:400}.body-xs,.body-xs-medium{font-size:.75em;letter-spacing:0;line-height:18px}.body-xs-medium{font-weight:500}.body-xs-bold{font-weight:600;font-size:.75em;letter-spacing:0;line-height:18px}.body-2xs{font-weight:400}.body-2xs,.body-2xs-medium{font-size:.6875em;letter-spacing:0;line-height:18px}.body-2xs-medium{font-weight:500}.body-2xs-bold{font-weight:600;font-size:.6875em;letter-spacing:0;line-height:18px}.bg-primary{background-color:#f7f7f8}.bg-secondary{background-color:#fff}.bg-tertiary{background-color:#ededed}.bg-accent{background-color:#3e5fff}.bg-accent-subtle{background-color:#f3f7fc}.bg-disabled{background-color:#c8c9cb}.bg-success{background-color:#0a8550}.bg-critical{background-color:#e02f1f}.bg-warning{background-color:#fac900}.bg-success-subtle{background-color:#ecf9ee}.bg-warning-subtle{background-color:#fff6db}.bg-critical-subtle{background-color:#fcefee}.bg-primary-active{background-color:#ededed}.bg-secondary-active{background-color:#f7f7f8}.bg-accent-active{background-color:#243dcc}.border-primary{border-color:#c8c9cb}.border-secondary{border-color:#e2e2e4}.border-input{border-color:#909192}.border-accent{border-color:#3e5fff}.border-success{border-color:#37c871}.border-warning{border-color:#fac900}.border-critical{border-color:#f29086}.border-accent-active{border-color:#243dcc}.text-primary{color:#2a2a2d}.text-secondary{color:#696a6d}.text-accent{color:#3e5fff}.text-primary-on-color{color:#fff}.text-secondary-on-color{color:#f7f7f8}.text-disabled{color:#b2b2b3}.text-success{color:#075f3c}.text-warning{color:#654a0b}.text-critical{color:#9e1c10}.text-accent-active{color:#243dcc}.text-placeholder{color:#696a6d}.stroke-primary{stroke:#c8c9cb}.dark .bg-primary{background-color:#141415}.dark .bg-secondary{background-color:#1d1e20}.dark .bg-tertiary{background-color:#2a2a2d}.dark .bg-accent{background-color:#3e5fff}.dark .bg-accent-subtle{background-color:#1a1f3d}.dark .bg-disabled{background-color:#3e3f42}.dark .bg-success{background-color:#0a8550}.dark .bg-critical{background-color:#9e1c10}.dark .bg-warning{background-color:#8e6c10}.dark .bg-success-subtle{background-color:#043420}.dark .bg-warning-subtle{background-color:#3c2a07}.dark .bg-critical-subtle{background-color:#5a0e07}.dark .bg-primary-active{background-color:#1d1e20}.dark .bg-secondary-active{background-color:#2a2a2d}.dark .bg-accent-active{background-color:#243dcc}.dark .border-primary{border-color:#4f5054}.dark .border-secondary{border-color:#3e3f42}.dark .border-input{border-color:#696a6d}.dark .border-accent{border-color:#3e5fff}.dark .border-success{border-color:#0a8550}.dark .border-warning{border-color:#8e6c10}.dark .border-critical{border-color:#e02f1f}.dark .border-accent-active{border-color:#243dcc}.dark .text-primary{color:#fff}.dark .text-secondary{color:#909192}.dark .text-accent{color:#6b90fa}.dark .text-primary-on-color{color:#fff}.dark .text-secondary-on-color{color:#f7f7f8}.dark .text-disabled{color:#4f5054}.dark .text-success{color:#37c871}.dark .text-warning{color:#fac900}.dark .text-critical{color:#f29086}.dark .text-accent-active{color:#8caef8}.dark .text-placeholder{color:#b2b2b3}.dark .stroke-primary{stroke:#4f5054}.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.inset-0{inset:0}.inset-y-0{top:0;bottom:0}.bottom-4{bottom:1em}.left-1\/2,.left-2\/4{left:50%}.right-0{right:0}.right-1\.5{right:.375em}.top-2\/4{top:50%}.z-50{z-index:50}.z-\[1\]{z-index:1}.my-0\.5{margin-top:.125em}.mb-0\.5,.my-0\.5{margin-bottom:.125em}.ml-2{margin-left:.5em}.ml-7{margin-left:1.75em}.mr-0\.5{margin-right:.125em}.mr-4{margin-right:1em}.mt-0\.5{margin-top:.125em}.mt-1\.5{margin-top:.375em}.box-border{box-sizing:border-box}.contents{display:contents}.size-6{width:1.5em;height:1.5em}.h-1\.5{height:.375em}.h-12{height:3em}.h-20{height:5em}.h-4\.5{height:1.125em}.h-\[151px\]{height:151px}.h-\[214px\]{height:214px}.h-\[40px\]{height:40px}.h-\[75\%\]{height:75%}.max-h-10{max-height:2.5em}.max-h-\[300px\]{max-height:300px}.max-h-\[500px\]{max-height:500px}.max-h-\[90vh\]{max-height:90vh}.min-h-0{min-height:0}.min-h-12{min-height:3em}.min-h-\[140px\]{min-height:140px}.min-h-full{min-height:100%}.w-1\.5{width:.375em}.w-11{width:2.75em}.w-12{width:3em}.w-20{width:5em}.w-4\.5{width:1.125em}.w-80{width:20em}.w-\[150px\]{width:150px}.w-\[198px\]{width:198px}.w-\[416px\]{width:416px}.w-\[41px\]{width:41px}.w-\[75\%\]{width:75%}.w-fit{width:fit-content}.min-w-80{min-width:20em}.min-w-\[150px\]{min-width:150px}.min-w-\[230px\]{min-width:230px}.max-w-55{max-width:13.75em}.flex-shrink-0,.shrink-0{flex-shrink:0}.-translate-x-1\.5{--tw-translate-x:-.375em}.-translate-x-1\.5,.-translate-x-1\/2,.-translate-x-2\/4{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-1\/2,.-translate-x-2\/4{--tw-translate-x:-50%}.-translate-y-2\/4{--tw-translate-y:-50%}.-translate-y-2\/4,.translate-x-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-0{--tw-translate-x:0px}.translate-x-5{--tw-translate-x:1.25em}.-rotate-90,.translate-x-5{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-90{--tw-rotate:-90deg}.rotate-180{--tw-rotate:180deg}.rotate-180,.rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-90{--tw-rotate:90deg}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes dash{0%{stroke-dasharray:1,300;stroke-dashoffset:0}50%{stroke-dasharray:150,300;stroke-dashoffset:-75}to{stroke-dasharray:1,300;stroke-dashoffset:-250}}.animate-connectingDash{animation:dash 1.5s ease-in-out infinite}@keyframes rotate{to{transform:rotate(1turn)}}.animate-connectingRotate{animation:rotate 1.5s linear infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.\!cursor-not-allowed{cursor:not-allowed!important}.\!resize-none{resize:none!important}.appearance-none{appearance:none}.flex-row-reverse{flex-direction:row-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.gap-2{gap:.5em}.gap-3{gap:.75em}.gap-5{gap:1.25em}.gap-7{gap:1.75em}.gap-8{gap:2em}.gap-x-1{column-gap:.25em}.self-start{align-self:flex-start}.overflow-y-auto{overflow-y:auto}.whitespace-nowrap{white-space:nowrap}.border-none{border-width:0;border-style:none}.border-transparent{border-color:#0000}.bg-neutral-0{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-neutral-500{--tw-bg-opacity:1;background-color:rgb(144 145 146/var(--tw-bg-opacity,1))}.bg-neutral-700{--tw-bg-opacity:1;background-color:rgb(79 80 84/var(--tw-bg-opacity,1))}.stroke-green-400{stroke:#37c871}.stroke-neutral-300{stroke:#c8c9cb}.p-0\.5{padding:.125em}.p-4{padding:1em}.px-1\.5{padding-left:.375em;padding-right:.375em}.py-1\.5{padding-top:.375em;padding-bottom:.375em}.pl-1{padding-left:.25em}.pl-3{padding-left:.75em}.pr-8{padding-right:2em}.pt-1{padding-top:.25em}.pt-2{padding-top:.5em}.text-left{text-align:left}.text-right{text-align:right}.text-justify{text-align:justify}.text-start{text-align:start}.text-end{text-align:end}.capitalize{text-transform:capitalize}.text-inherit{color:inherit}.text-neutral-500{--tw-text-opacity:1;color:rgb(144 145 146/var(--tw-text-opacity,1))}.opacity-0{opacity:0}.opacity-50{opacity:.5}.mix-blend-multiply{mix-blend-mode:multiply}.transition-\[stroke\]{transition-property:stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.25s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.25s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.25s}.duration-fast{transition-duration:.15s}.duration-medium{transition-duration:.25s}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.placeholder\:text-disabled::placeholder{color:#b2b2b3}.placeholder\:text-placeholder::placeholder{color:#696a6d}.dark .placeholder\:text-disabled::placeholder{color:#4f5054}.dark .placeholder\:text-placeholder::placeholder{color:#b2b2b3}.checked\:bg-accent:checked{background-color:#3e5fff}.checked\:border-accent:checked{border-color:#3e5fff}.dark .checked\:bg-accent:checked{background-color:#3e5fff}.dark .checked\:border-accent:checked{border-color:#3e5fff}.hover\:bg-secondary:hover{background-color:#fff}.hover\:bg-primary-active:hover{background-color:#ededed}.hover\:bg-secondary-active:hover{background-color:#f7f7f8}.hover\:bg-accent-active:hover{background-color:#243dcc}.hover\:border-accent-active:hover{border-color:#243dcc}.hover\:text-accent-active:hover{color:#243dcc}.dark :is(.hover\:bg-primary-active:hover,.hover\:bg-secondary:hover){background-color:#1d1e20}.dark .hover\:bg-secondary-active:hover{background-color:#2a2a2d}.dark .hover\:bg-accent-active:hover{background-color:#243dcc}.dark .hover\:border-accent-active:hover{border-color:#243dcc}.dark .hover\:text-accent-active:hover{color:#8caef8}.checked\:hover\:bg-accent-active:hover:checked{background-color:#243dcc}.checked\:hover\:border-accent-active:hover:checked{border-color:#243dcc}.dark .checked\:hover\:bg-accent-active:hover:checked{background-color:#243dcc}.dark .checked\:hover\:border-accent-active:hover:checked{border-color:#243dcc}.active\:bg-secondary:active{background-color:#fff}.active\:bg-accent:active{background-color:#3e5fff}.active\:bg-secondary-active:active{background-color:#f7f7f8}.active\:border-accent:active{border-color:#3e5fff}.dark .active\:bg-secondary:active{background-color:#1d1e20}.dark .active\:bg-accent:active{background-color:#3e5fff}.dark .active\:bg-secondary-active:active{background-color:#2a2a2d}.dark .active\:border-accent:active{border-color:#3e5fff}.group:hover .group-hover\:text-accent-active{color:#243dcc}.dark .group:hover .group-hover\:text-accent-active{color:#8caef8}.dark\:bg-primary:is(.dark *){background-color:#f7f7f8}.dark\:bg-secondary:is(.dark *){background-color:#fff}.dark\:bg-tertiary:is(.dark *){background-color:#ededed}.dark\:bg-accent:is(.dark *){background-color:#3e5fff}.dark\:bg-accent-subtle:is(.dark *){background-color:#f3f7fc}.dark\:bg-success:is(.dark *){background-color:#0a8550}.dark\:bg-critical:is(.dark *){background-color:#e02f1f}.dark\:bg-warning:is(.dark *){background-color:#fac900}.dark\:bg-success-subtle:is(.dark *){background-color:#ecf9ee}.dark\:bg-warning-subtle:is(.dark *){background-color:#fff6db}.dark\:bg-critical-subtle:is(.dark *){background-color:#fcefee}.dark\:bg-primary-active:is(.dark *){background-color:#ededed}.dark\:bg-secondary-active:is(.dark *){background-color:#f7f7f8}.dark\:bg-accent-active:is(.dark *){background-color:#243dcc}.dark\:border-primary:is(.dark *){border-color:#c8c9cb}.dark\:border-secondary:is(.dark *){border-color:#e2e2e4}.dark\:border-accent:is(.dark *){border-color:#3e5fff}.dark\:border-success:is(.dark *){border-color:#37c871}.dark\:border-warning:is(.dark *){border-color:#fac900}.dark\:border-critical:is(.dark *){border-color:#f29086}.dark\:border-accent-active:is(.dark *){border-color:#243dcc}.dark\:text-primary:is(.dark *){color:#2a2a2d}.dark\:text-secondary:is(.dark *){color:#696a6d}.dark\:text-accent:is(.dark *){color:#3e5fff}.dark\:text-primary-on-color:is(.dark *){color:#fff}.dark\:text-secondary-on-color:is(.dark *){color:#f7f7f8}.dark\:text-disabled:is(.dark *){color:#b2b2b3}.dark\:text-success:is(.dark *){color:#075f3c}.dark\:text-warning:is(.dark *){color:#654a0b}.dark\:text-critical:is(.dark *){color:#9e1c10}.dark\:text-accent-active:is(.dark *){color:#243dcc}.dark .dark\:bg-primary:is(.dark *){background-color:#141415}.dark .dark\:bg-secondary:is(.dark *){background-color:#1d1e20}.dark .dark\:bg-tertiary:is(.dark *){background-color:#2a2a2d}.dark .dark\:bg-accent:is(.dark *){background-color:#3e5fff}.dark .dark\:bg-accent-subtle:is(.dark *){background-color:#1a1f3d}.dark .dark\:bg-success:is(.dark *){background-color:#0a8550}.dark .dark\:bg-critical:is(.dark *){background-color:#9e1c10}.dark .dark\:bg-warning:is(.dark *){background-color:#8e6c10}.dark .dark\:bg-success-subtle:is(.dark *){background-color:#043420}.dark .dark\:bg-warning-subtle:is(.dark *){background-color:#3c2a07}.dark .dark\:bg-critical-subtle:is(.dark *){background-color:#5a0e07}.dark .dark\:bg-primary-active:is(.dark *){background-color:#1d1e20}.dark .dark\:bg-secondary-active:is(.dark *){background-color:#2a2a2d}.dark .dark\:bg-accent-active:is(.dark *){background-color:#243dcc}.dark .dark\:border-primary:is(.dark *){border-color:#4f5054}.dark .dark\:border-secondary:is(.dark *){border-color:#3e3f42}.dark .dark\:border-accent:is(.dark *){border-color:#3e5fff}.dark .dark\:border-success:is(.dark *){border-color:#0a8550}.dark .dark\:border-warning:is(.dark *){border-color:#8e6c10}.dark .dark\:border-critical:is(.dark *){border-color:#e02f1f}.dark .dark\:border-accent-active:is(.dark *){border-color:#243dcc}.dark .dark\:text-primary:is(.dark *){color:#fff}.dark .dark\:text-secondary:is(.dark *){color:#909192}.dark .dark\:text-accent:is(.dark *){color:#6b90fa}.dark .dark\:text-primary-on-color:is(.dark *){color:#fff}.dark .dark\:text-secondary-on-color:is(.dark *){color:#f7f7f8}.dark .dark\:text-disabled:is(.dark *){color:#4f5054}.dark .dark\:text-success:is(.dark *){color:#37c871}.dark .dark\:text-warning:is(.dark *){color:#fac900}.dark .dark\:text-critical:is(.dark *){color:#f29086}.dark .dark\:text-accent-active:is(.dark *){color:#8caef8}.last\:mb-0:last-child{margin-bottom:0}.focus-visible\:shadow-focus-inset:focus-visible{--tw-shadow:inset 0px 0px 0px 2px #3e5fff,inset 0px 0px 0 4px #fff;--tw-shadow-colored:inset 0px 0px 0px 2px var(--tw-shadow-color),inset 0px 0px 0 4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.peer:checked~.peer-checked\:opacity-100{opacity:1}.data-\[closed\]\:translate-y-2[data-closed]{--tw-translate-y:.5em}.data-\[closed\]\:translate-y-2[data-closed],.data-\[closed\]\:translate-y-4[data-closed]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[closed\]\:translate-y-4[data-closed]{--tw-translate-y:1em}.data-\[closed\]\:scale-95[data-closed]{--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[closed\]\:opacity-0[data-closed]{opacity:0}:where([data-headlessui-focus-visible]) .ui-focus-visible\:shadow-focus:focus{--tw-shadow:0px 0px 0px 2px #fff,0px 0px 0px 4px #3e5fff;--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color),0px 0px 0px 4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.\[\&_\*\]\:cursor-not-allowed *{cursor:not-allowed}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.bottom-0{bottom:0}.bottom-2{bottom:.5em}.left-0{left:0}.left-1\/2{left:50%}.z-10{z-index:10}.mx-1{margin-left:.25em;margin-right:.25em}.mx-4{margin-left:1em;margin-right:1em}.mx-auto{margin-left:auto;margin-right:auto}.my-4{margin-top:1em;margin-bottom:1em}.my-6{margin-top:1.5em;margin-bottom:1.5em}.-mr-1{margin-right:-.25em}.-mr-1\.5{margin-right:-.375em}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25em}.mb-2{margin-bottom:.5em}.mb-3{margin-bottom:.75em}.mb-4{margin-bottom:1em}.mb-6{margin-bottom:1.5em}.mb-8{margin-bottom:2em}.ml-auto{margin-left:auto}.mr-0{margin-right:0}.mr-1{margin-right:.25em}.mr-1\.5{margin-right:.375em}.mr-2{margin-right:.5em}.mr-auto{margin-right:auto}.mt-1{margin-top:.25em}.mt-2{margin-top:.5em}.mt-3{margin-top:.75em}.mt-4{margin-top:1em}.mt-6{margin-top:1.5em}.mt-\[1px\]{margin-top:1px}.mt-\[3px\]{margin-top:3px}.line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table-caption{display:table-caption}.hidden{display:none}.size-10{width:2.5em;height:2.5em}.size-8{width:2em;height:2em}.size-\[180px\]{width:180px;height:180px}.size-full{width:100%;height:100%}.h-0{height:0}.h-10{height:2.5em}.h-14{height:3.5em}.h-4{height:1em}.h-5{height:1.25em}.h-6{height:1.5em}.h-7{height:1.75em}.h-8{height:2em}.h-9{height:2.25em}.h-\[140px\]{height:140px}.h-\[180px\]{height:180px}.h-\[22px\]{height:22px}.h-\[23px\]{height:23px}.h-\[56px\]{height:56px}.h-\[80px\]{height:80px}.h-auto{height:auto}.h-full{height:100%}.max-h-\[276px\]{max-height:276px}.max-h-\[348px\]{max-height:348px}.max-h-full{max-height:100%}.min-h-\[276px\]{min-height:276px}.min-h-\[348px\]{min-height:348px}.w-10{width:2.5em}.w-14{width:3.5em}.w-4{width:1em}.w-5{width:1.25em}.w-6{width:1.5em}.w-7{width:1.75em}.w-8{width:2em}.w-9{width:2.25em}.w-\[140px\]{width:140px}.w-\[180px\]{width:180px}.w-\[220px\]{width:220px}.w-\[22px\]{width:22px}.w-\[308px\]{width:308px}.w-\[310px\]{width:310px}.w-\[400px\]{width:400px}.w-\[440px\]{width:440px}.w-\[56px\]{width:56px}.w-\[660px\]{width:660px}.w-\[80px\]{width:80px}.w-auto{width:auto}.w-full{width:100%}.max-w-\[220px\]{max-width:220px}.max-w-\[308px\]{max-width:308px}.max-w-\[454px\]{max-width:454px}.max-w-\[696px\]{max-width:696px}.max-w-\[794px\]{max-width:794px}.flex-1{flex:1 1 0%}.flex-initial{flex:0 1 auto}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.caption-top{caption-side:top}.caption-bottom{caption-side:bottom}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{user-select:none}.resize{resize:both}.list-outside{list-style-position:outside}.list-disc{list-style-type:disc}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-nowrap{flex-wrap:nowrap}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0{gap:0}.gap-0\.5{gap:.125em}.gap-1{gap:.25em}.gap-12{gap:3em}.gap-4{gap:1em}.gap-6{gap:1.5em}.space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(0px*var(--tw-space-x-reverse));margin-left:calc(0px*(1 - var(--tw-space-x-reverse)))}.space-x-0\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.125em*var(--tw-space-x-reverse));margin-left:calc(.125em*(1 - var(--tw-space-x-reverse)))}.self-end{align-self:flex-end}.self-center{align-self:center}.self-stretch{align-self:stretch}.justify-self-center{justify-self:center}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-pre-line{white-space:pre-line}.rounded-\[8px\]{border-radius:8px}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:20px}.rounded-md{border-radius:12px}.rounded-sm{border-radius:6px}.rounded-xl{border-radius:.75em}.rounded-xs{border-radius:3px}.border{border-width:1px}.border-0{border-width:0}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-0{border-bottom-width:0}.border-l{border-left-width:1px}.border-solid{border-style:solid}.border-hidden{border-style:hidden}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.border-pink-400{--tw-border-opacity:1;border-color:rgb(244 114 182/var(--tw-border-opacity))}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.from-\[\#F7F7F8\]{--tw-gradient-from:#f7f7f8 var(--tw-gradient-from-position);--tw-gradient-to:#f7f7f800 var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-\[\#EDEDED\]{--tw-gradient-to:#ededed var(--tw-gradient-to-position)}.fill-current{fill:currentColor}.object-cover{object-fit:cover}.object-bottom{object-position:bottom}.object-center{object-position:center}.object-left{object-position:left}.object-left-bottom{object-position:left bottom}.object-left-top{object-position:left top}.object-right{object-position:right}.object-right-bottom{object-position:right bottom}.object-right-top{object-position:right top}.object-top{object-position:top}.p-0{padding:0}.p-1{padding:.25em}.p-2{padding:.5em}.p-3{padding:.75em}.p-6{padding:1.5em}.px-1{padding-left:.25em;padding-right:.25em}.px-10{padding-left:2.5em;padding-right:2.5em}.px-2{padding-left:.5em;padding-right:.5em}.px-24{padding-left:6em;padding-right:6em}.px-3{padding-left:.75em;padding-right:.75em}.px-4{padding-left:1em;padding-right:1em}.px-7{padding-left:1.75em;padding-right:1.75em}.px-8{padding-left:2em;padding-right:2em}.py-0{padding-top:0;padding-bottom:0}.py-0\.5{padding-top:.125em;padding-bottom:.125em}.py-1{padding-top:.25em;padding-bottom:.25em}.py-2{padding-top:.5em;padding-bottom:.5em}.py-2\.5{padding-top:.625em;padding-bottom:.625em}.py-3{padding-top:.75em;padding-bottom:.75em}.py-4{padding-top:1em;padding-bottom:1em}.py-6{padding-top:1.5em;padding-bottom:1.5em}.py-8{padding-top:2em;padding-bottom:2em}.pb-3{padding-bottom:.75em}.pl-2{padding-left:.5em}.pl-4{padding-left:1em}.pl-6{padding-left:1.5em}.pl-8{padding-left:2em}.pr-0{padding-right:0}.pr-0\.5{padding-right:.125em}.pr-1{padding-right:.25em}.pr-1\.5{padding-right:.375em}.pr-14{padding-right:3.5em}.pr-2{padding-right:.5em}.pt-12{padding-top:3em}.pt-6{padding-top:1.5em}.text-center{text-align:center}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.font-heading{font-family:Inter,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.text-sm{font-size:.875em}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.text-red-600{--tw-text-opacity:1;color:rgb(224 47 31/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-\[inset_0_0\.75px_0\.75px_0_rgba\(255\2c 255\2c 255\2c 0\.30\)\]{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-\[inset_0_0\.75px_0\.75px_0_rgba\(255\2c 255\2c 255\2c 0\.30\)\]{--tw-shadow:inset 0 0.75px 0.75px 0 #ffffff4d;--tw-shadow-colored:inset 0 0.75px 0.75px 0 var(--tw-shadow-color)}.shadow-bottom-sheet{--tw-shadow:0 -4px 8px 0 #00000029;--tw-shadow-colored:0 -4px 8px 0 var(--tw-shadow-color)}.shadow-bottom-sheet,.shadow-bottom-sheet-dark{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-bottom-sheet-dark{--tw-shadow:0 -4px 8px 0 #000000b3;--tw-shadow-colored:0 -4px 8px 0 var(--tw-shadow-color)}.shadow-lg{--tw-shadow:0 4px 8px 0 #00000029;--tw-shadow-colored:0 4px 8px 0 var(--tw-shadow-color)}.shadow-lg,.shadow-lg-dark{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg-dark{--tw-shadow:0 4px 8px 0 #000000b3;--tw-shadow-colored:0 4px 8px 0 var(--tw-shadow-color)}.shadow-lg-reverse{--tw-shadow:0 -4px 8px 0 #00000026;--tw-shadow-colored:0 -4px 8px 0 var(--tw-shadow-color)}.shadow-lg-reverse,.shadow-lg-reverse-dark{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg-reverse-dark{--tw-shadow:0 -4px 8px 0 #000000b3;--tw-shadow-colored:0 -4px 8px 0 var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 2px 4px 0 #00000029;--tw-shadow-colored:0 2px 4px 0 var(--tw-shadow-color)}.shadow-md,.shadow-md-dark{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-md-dark{--tw-shadow:0 2px 4px 0 #000000b3;--tw-shadow-colored:0 2px 4px 0 var(--tw-shadow-color)}.shadow-modal{--tw-shadow:0 4px 8px 0 #00000029;--tw-shadow-colored:0 4px 8px 0 var(--tw-shadow-color)}.shadow-modal,.shadow-modal-dark{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-modal-dark{--tw-shadow:0 4px 8px 0 #000000b3;--tw-shadow-colored:0 4px 8px 0 var(--tw-shadow-color)}.shadow-popover{--tw-shadow:0 2px 4px 0 #00000029;--tw-shadow-colored:0 2px 4px 0 var(--tw-shadow-color)}.shadow-popover,.shadow-popover-dark{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-popover-dark{--tw-shadow:0 2px 4px 0 #000000b3;--tw-shadow-colored:0 2px 4px 0 var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000001a;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-sm,.shadow-sm-dark{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm-dark{--tw-shadow:0 1px 2px 0 #000000b3;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.outline-none{outline:2px solid #0000;outline-offset:2px}.outline{outline-style:solid}.blur{--tw-blur:blur(8px)}.blur,.blur-sm{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-sm{--tw-blur:blur(4px)}.drop-shadow{--tw-drop-shadow:drop-shadow(0 1px 2px #0000001a) drop-shadow(0 1px 1px #0000000f)}.drop-shadow,.drop-shadow-lg{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-lg{--tw-drop-shadow:drop-shadow(0 10px 8px #0000000a) drop-shadow(0 4px 3px #0000001a)}.drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px #00000012) drop-shadow(0 2px 2px #0000000f)}.drop-shadow-md,.drop-shadow-sm{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-sm{--tw-drop-shadow:drop-shadow(0 1px 1px #0000000d)}.invert{--tw-invert:invert(100%)}.filter,.invert{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.25s}.scrollbar-none{scrollbar-width:none}.scrollbar-none::-webkit-scrollbar{display:none}@supports (overflow-wrap:anywhere){.break-anywhere{overflow-wrap:anywhere}}@supports not (overflow-wrap:anywhere){.break-anywhere{word-break:break-word}}.placeholder-primary::placeholder{color:#696a6d}.remove-arrows::-webkit-inner-spin-button,.remove-arrows::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.remove-arrows{-moz-appearance:textfield}:host{font-size:16px!important;line-height:1.5!important;-webkit-text-size-adjust:100%!important;tab-size:4!important;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important;font-feature-settings:normal!important}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus-visible\:shadow-focus:focus-visible{--tw-shadow:0px 0px 0px 2px #fff,0px 0px 0px 4px #3e5fff;--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color),0px 0px 0px 4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus-visible\:outline-none:focus-visible{outline:2px solid #0000;outline-offset:2px}.dark\:bg-black:is(.dark *){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.dark\:from-\[\#2a2a2d\]:is(.dark *){--tw-gradient-from:#2a2a2d var(--tw-gradient-from-position);--tw-gradient-to:#2a2a2d00 var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.dark\:to-\[\#141415\]:is(.dark *){--tw-gradient-to:#141415 var(--tw-gradient-to-position)}.dark\:text-red-700:is(.dark *){--tw-text-opacity:1;color:rgb(158 28 16/var(--tw-text-opacity))}.dark\:shadow-\[0_2px_3px_0_rgba\(0\2c 0\2c 0\2c 0\.20\)\]:is(.dark *){--tw-shadow:0 2px 3px 0 #0003;--tw-shadow-colored:0 2px 3px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark\:marker\:text-white :is(.dark *)::marker,.dark\:marker\:text-white:is(.dark *)::marker{color:#fff}@media{.sm\:block{display:block}.sm\:inline-block{display:inline-block}.sm\:hidden{display:none}.sm\:overflow-hidden{overflow:hidden}.sm\:overflow-x-hidden{overflow-x:hidden}.sm\:overflow-y-hidden{overflow-y:hidden}.sm\:border-hidden{border-style:hidden}.md\:block{display:block}.md\:inline-block{display:inline-block}.md\:hidden{display:none}.md\:overflow-hidden{overflow:hidden}.md\:overflow-x-hidden{overflow-x:hidden}.md\:overflow-y-hidden{overflow-y:hidden}.md\:border-hidden{border-style:hidden}.lg\:block{display:block}.lg\:inline-block{display:inline-block}.lg\:hidden{display:none}.lg\:overflow-hidden{overflow:hidden}.lg\:overflow-x-hidden{overflow-x:hidden}.lg\:overflow-y-hidden{overflow-y:hidden}.lg\:border-hidden{border-style:hidden}.xl\:block{display:block}.xl\:inline-block{display:inline-block}.xl\:hidden{display:none}.xl\:overflow-hidden{overflow:hidden}.xl\:overflow-x-hidden{overflow-x:hidden}.xl\:overflow-y-hidden{overflow-y:hidden}.xl\:border-hidden{border-style:hidden}}

html,
body {
  background: #111314 !important;
  color: #fff;
}

