@import url(https://fonts.googleapis.com/css?family=Titillium+Web);
._296e0{-webkit-font-smoothing:antialiased;margin:0;}._296e0[data-theme="apple"][data-color-scheme="light"]{--mk42-separator-color:#c8c7cb;--mk42-main-button-disabled-color:#e8e8e9;--mk42-button-confirm-color:#34c759;--mk42-quaternary-fill-background:rgba(116,116,128,0.08);}._296e0[data-theme="apple"][data-color-scheme="dark"]{--mk42-separator-color:#3d3d3f;--mk42-main-button-disabled-color:#2f2f2f;--mk42-button-confirm-color:#30d158;--mk42-quaternary-fill-background:rgba(116,116,128,0.12);}._296e0[data-theme="material"][data-color-scheme="light"]{--mk42-separator-color:#d9d9d9;--mk42-main-button-disabled-color:#e9e8e8;--mk42-button-confirm-color:#31b545;--mk42-quaternary-fill-background:rgba(122,122,122,0.18);}._296e0[data-theme="material"][data-color-scheme="dark"]{--mk42-separator-color:#000000;--mk42-main-button-disabled-color:#3c3c3e;--mk42-button-confirm-color:#31b545;--mk42-quaternary-fill-background:rgba(122,122,122,0.08);}

.roulette-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.roulette-wrapper .selector {
  width: 3px;
  background: grey;
  left: 50%;
  height: 100%;
  transform: translate(-50%, 0%);
  position: absolute;
  z-index: 2;
}

.roulette-wrapper .wheel {
  display: flex;
}

.roulette-wrapper .wheel .row {
  display: flex;
}

.roulette-wrapper .wheel .row .card {
  height: 75px;
  width: 75px;
  margin: 3px;
  border-radius: 8px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
}

.card.red {
  background: #f95146;
}

.card.black {
  background: #2d3035;
}

.card.green {
  background: #00c74d;
}

* {
  box-sizing: border-box;
}

/* Modal */
.tgui-cc76354712c6e8d9 {
  background-color: rgb(40, 40, 40) !important;
  color: white;
}

/* Overlay */
.tgui-3197096cb603b35a {
  background-color: rgba(40, 40, 40, 0.4) !important;
}

/* Balance Display */
.balance-container {
  width: 100%;
}

.balance {
  margin: 10px;
}

/* Slot Machine Container */
.slot-machine {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
  position: relative;
}

/* Reel Styling */
.reel {
  width: 80px;
  height: 240px; /* 3 rows x 80px each */
  margin: 0 10px;
  border: 4px solid #f0f0f0;
  border-radius: 10px;
  background: #333;
  overflow: hidden;
  position: relative;
}

/* Symbols Container */
.symbols {
  position: absolute;
  top: 0;
  width: 100%;
}

/* Individual Symbol */
.symbol {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
}

/* Controls Container */
.controls {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* Bet Controls */
.bet-controls {
  display: flex;
  align-items: center;
}
.bet-controls button {
  width: 40px;
  height: 40px;
  font-size: 1.5em;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  background: #e74c3c;
  color: #f0f0f0;
  cursor: pointer;
  transition: background 0.3s;
}
.bet-controls button:hover {
  background: #c0392b;
}
.bet-controls input {
  width: 60px;
  text-align: center;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  padding: 5px;
  background: #555;
  color: #f0f0f0;
}

/* Play Button */
.play-button {
  padding: 10px 20px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  background: #27ae60;
  color: #f0f0f0;
  cursor: pointer;
  transition: background 0.3s;
}
.play-button:hover {
  background: #1e8449;
}
.play-button:disabled {
  background: #95a5a6;
  cursor: not-allowed;
}

/* Splash Screen Styling */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #f0f0f0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  z-index: 10;
}
.splash-screen.show {
  opacity: 1;
  visibility: visible;
}
.splash-message {
  margin-bottom: 20px;
  text-align: center;
}
.close-splash {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  background: #e74c3c;
  color: #f0f0f0;
  cursor: pointer;
  transition: background 0.3s;
}
.close-splash:hover {
  background: #c0392b;
}

/* Balance Animation */
.balance-number {
  display: inline-block;
  transition: transform 0.3s;
}
.balance-number.animate {
  transform: scale(1.2);
}

/* Paylines Styling */
.paylines {
  position: absolute;
  top: -35px;
  left: 0;
  width: 300px;
  height: 240px;
  pointer-events: none;
}
.payline {
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(255, 215, 0, 0.8); /* Gold color */
  opacity: 0;
  transition: opacity 0.3s;
}
.payline.show {
  opacity: 1;
}
/* Define specific payline positions */
.payline.horizontal-top {
  top: 80px; /* First row */
}
.payline.horizontal-middle {
  top: 160px; /* Second row */
}
.payline.horizontal-bottom {
  top: 240px; /* Third row */
}
.payline.diagonal1 {
  top: 55px;
  left: 45px;
  height: 0;
  width: 100%;
  border-top: 3px solid rgba(255, 215, 0, 0.8);
  transform: rotate(45deg);
  transform-origin: left top;
}
.payline.diagonal2 {
  top: 265px;
  left: 45px;
  height: 0;
  width: 100%;
  border-top: 3px solid rgba(255, 215, 0, 0.8);
  transform: rotate(-45deg);
  transform-origin: left bottom;
}

.tgui-bbfb272d22eb23e8 {
  color: #000 !important;
}

/*!* Fix for Card -> CardCell to align it's content *!*/
.tgui-1c6d7865a76a19bc {
  width: 100%;
}

/*.tgui-d0251b46536ac046 {*/
/*  color: black !important;*/
/*}*/

/*!* BG Color of cards and inputs *!*/
/*.tgui-8e15431b81f6601e .tgui-db9be63c4fecf79b, .tgui-8ca550c2fc85eff5 {*/
/*  background: rgb(40, 40, 40) !important;*/
/*}*/

.tgui-8ca550c2fc85eff5 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/*!* Input color *!*/
.tgui-c4863cd4c893a047 {
  color: #000 !important;
}

/*!* Card bg on hover *!*/
/*.tgui-7edaaf0c57797623,*/
/*.tgui-b8dfba0b5c3d054c:hover {*/
/*  background: rgb(42, 42, 42) !important;*/
/*}*/

.tgui-b7217abb24e8763a {
  color: black !important;
}

/*!* Chip bg color *!*/
.tgui-b8b077d7e3491b30 {
  background: rgba(197, 197, 197, 0.95) !important;
}

.tgui-9c7ff8cd23a6ea9a {
  color: #373737 !important;
}

.tgui-8af0d10d5540c6cc {
  border-color: transparent !important;
}

.tgui-97eca24324122dbc .tgui-4b78bed6e925088e > :last-child {
  padding-bottom: 1rem !important;
}

.display-data__header {
  font-weight: 400;
}

.display-data__line {
  padding: 16px 24px;
}

.display-data__line-title {
  color: var(--tg-theme-subtitle-text-color);
}

.display-data__line-value {
  word-break: break-word;
}

/*
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

*, ::before, ::after {
  --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: rgb(59 130 246 / 0.5);
  --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:  ;
}

::backdrop {
  --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: rgb(59 130 246 / 0.5);
  --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:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.fixed {
  position: fixed;
}
.\!absolute {
  position: absolute !important;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-\[-250px\] {
  bottom: -250px;
}
.bottom-\[5rem\] {
  bottom: 5rem;
}
.left-0 {
  left: 0px;
}
.left-4 {
  left: 1rem;
}
.left-\[0\.5rem\] {
  left: 0.5rem;
}
.right-0 {
  right: 0px;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-32 {
  top: 8rem;
}
.top-4 {
  top: 1rem;
}
.top-8 {
  top: 2rem;
}
.z-\[9999\] {
  z-index: 9999;
}
.z-\[999\] {
  z-index: 999;
}
.\!-m-px {
  margin: -1px !important;
}
.m-auto {
  margin: auto;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[2px\] {
  margin-top: 2px;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.\!h-10 {
  height: 2.5rem !important;
}
.\!h-4 {
  height: 1rem !important;
}
.\!h-px {
  height: 1px !important;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-\[100px\] {
  height: 100px;
}
.h-\[100vh\] {
  height: 100vh;
}
.h-\[158px\] {
  height: 158px;
}
.h-\[24px\] {
  height: 24px;
}
.h-\[250px\] {
  height: 250px;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[8rem\] {
  height: 8rem;
}
.h-full {
  height: 100%;
}
.max-h-\[100vh\] {
  max-height: 100vh;
}
.min-h-\[100vh\] {
  min-height: 100vh;
}
.\!w-10 {
  width: 2.5rem !important;
}
.\!w-4 {
  width: 1rem !important;
}
.\!w-px {
  width: 1px !important;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-2 {
  width: 0.5rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[100vw\] {
  width: 100vw;
}
.w-\[24px\] {
  width: 24px;
}
.w-\[90px\] {
  width: 90px;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-\[100vw\] {
  max-width: 100vw;
}
.max-w-sm {
  max-width: 24rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.origin-left {
  transform-origin: left;
}
.translate-y-0 {
  --tw-translate-y: 0px;
  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));
}
.translate-y-2 {
  --tw-translate-y: 0.5rem;
  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));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  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));
}
.scale-150 {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  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));
}
.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  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));
}
.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));
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.list-decimal {
  list-style-type: decimal;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.content-center {
  align-content: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-white\/10 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(255 255 255 / 0.1);
}
.\!overflow-hidden {
  overflow: hidden !important;
}
.overflow-hidden {
  overflow: hidden;
}
.\!whitespace-nowrap {
  white-space: nowrap !important;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-l-xl {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.\!border-0 {
  border-width: 0px !important;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-\[4px\] {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-\[1px\] {
  border-bottom-width: 1px;
}
.border-r-0 {
  border-right-width: 0px;
}
.border-solid {
  border-style: solid;
}
.border-\[\#191919\] {
  --tw-border-opacity: 1;
  border-color: rgb(25 25 25 / var(--tw-border-opacity));
}
.border-\[\#eee\] {
  --tw-border-opacity: 1;
  border-color: rgb(238 238 238 / var(--tw-border-opacity));
}
.border-borderSecondary {
  --tw-border-opacity: 1;
  border-color: rgb(196 196 196 / var(--tw-border-opacity));
}
.border-current {
  border-color: currentColor;
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
}
.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
}
.border-gray-900 {
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-e-transparent {
  border-inline-end-color: transparent;
}
.bg-\[\#1E1D1FFF\] {
  background-color: #1E1D1FFF;
}
.bg-\[\#1E88E5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(30 136 229 / var(--tw-bg-opacity));
}
.bg-\[\#222224\] {
  --tw-bg-opacity: 1;
  background-color: rgb(34 34 36 / var(--tw-bg-opacity));
}
.bg-\[\#282828\] {
  --tw-bg-opacity: 1;
  background-color: rgb(40 40 40 / var(--tw-bg-opacity));
}
.bg-\[\#91EA67\] {
  --tw-bg-opacity: 1;
  background-color: rgb(145 234 103 / var(--tw-bg-opacity));
}
.bg-\[\#FFFFFF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-\[\#fff\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-accent {
  --tw-bg-opacity: 1;
  background-color: rgb(242 183 44 / var(--tw-bg-opacity));
}
.bg-background {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-backgroundSecondary {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 247 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}
.bg-btnBg {
  --tw-bg-opacity: 1;
  background-color: rgb(30 30 30 / var(--tw-bg-opacity));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}
.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}
.bg-red-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-opacity-0 {
  --tw-bg-opacity: 0;
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-amber-400 {
  --tw-gradient-from: #fbbf24 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(251 191 36 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-amber-500 {
  --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-violet-600 {
  --tw-gradient-from: #7c3aed var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(124 58 237 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-600 {
  --tw-gradient-from: #ca8a04 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(202 138 4 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-amber-400 {
  --tw-gradient-to: #fbbf24 var(--tw-gradient-to-position);
}
.to-indigo-600 {
  --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);
}
.to-yellow-500 {
  --tw-gradient-to: #eab308 var(--tw-gradient-to-position);
}
.to-yellow-600 {
  --tw-gradient-to: #ca8a04 var(--tw-gradient-to-position);
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.\!p-0 {
  padding: 0px !important;
}
.p-1 {
  padding: 0.25rem;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[16px\] {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-\[10rem\] {
  padding-bottom: 10rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-0\.5 {
  padding-top: 0.125rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.align-\[-0\.125em\] {
  vertical-align: -0.125em;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[15px\] {
  font-size: 15px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.leading-10 {
  line-height: 2.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.text-\[\#1E88E5\] {
  --tw-text-opacity: 1;
  color: rgb(30 136 229 / var(--tw-text-opacity));
}
.text-\[\#A2A2A5FF\] {
  color: #A2A2A5FF;
}
.text-\[\#c9c9c9\] {
  --tw-text-opacity: 1;
  color: rgb(201 201 201 / var(--tw-text-opacity));
}
.text-accent {
  --tw-text-opacity: 1;
  color: rgb(242 183 44 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-btnText {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-text {
  --tw-text-opacity: 1;
  color: rgb(16 16 16 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity));
}
.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -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);
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-gray-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity));
}
.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}
.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  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);
}
.filter {
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-100 {
  transition-duration: 100ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\!\[clip\:rect\(0\2c 0\2c 0\2c 0\)\] {
  clip: rect(0,0,0,0) !important;
}

* {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

:root {
  --tg-theme-secondary-bg-color: #fff !important;
}

body {
  background-color: #fff;
}

/* Modal */
.tgui-cc76354712c6e8d9 {
  background-color: #fff !important;
  color: #0f0f0f !important;
}
.hover\:bg-blue-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}
@media (prefers-reduced-motion: reduce) {

  @keyframes spin {

    to {
      transform: rotate(360deg);
    }
  }

  .motion-reduce\:animate-\[spin_1\.5s_linear_infinite\] {
    animation: spin 1.5s linear infinite;
  }
}
@media (min-width: 640px) {

  .sm\:translate-x-0 {
    --tw-translate-x: 0px;
    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));
  }

  .sm\:translate-x-2 {
    --tw-translate-x: 0.5rem;
    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));
  }

  .sm\:translate-y-0 {
    --tw-translate-y: 0px;
    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));
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }
}

:root {
  --tg-theme-bottom-bar-bg-color:  #ff453a !important;
  --tg-theme-section-separator-color: #ff453a !important;
  --tg-theme-link-color: #ff9f24 !important;
  --tg-theme-subtitle-text-color: #353535 !important;
  --tg-theme-button-text-color:  #fff !important;
  --tg-color-scheme: light !important;
  --tg-theme-bg-color: #ececec !important;
  --tg-theme-section-header-text-color:  #ff453a !important;
  --tg-theme-secondary-bg-color: #ececec !important;
  --tg-theme-section-bg-color:  #ff453a !important;
  --tg-theme-button-color:  #1e1e1e !important;
  --tg-theme-text-color:  #000 !important;
  --tg-theme-destructive-text-color:  #ff453a !important;
  --tg-theme-accent-text-color:  #ff453a !important;
  --tg-theme-hint-color: #656565 !important;
  --tg-theme-header-bg-color: #ff453a !important;
  --tg-viewport-height: 100vh;
  --tg-viewport-stable-height: 100vh;

  --tgui--tertiary_bg_color: #F4F4F7FF !important;
}

.tgui-f23c0e195677169c {
  background: var(--tgui--bg_color);
  overflow: hidden;
}
.tgui-947b927060015de8 {
  max-height: 0;
  transition: max-height 0.1s ease-in-out;
}
.tgui-60e7968097edfa6f {
  color: var(--tgui--link_color);
  transition: transform 0.15s ease-out;
}
.tgui-c900ecbd6d8d6d5e {
  transform: rotate(180deg);
}
.tgui-b8dfba0b5c3d054c {
  --tgui--cell--middle--padding: 16px 0;
  align-items: center;
  display: flex;
  gap: 24px;
  padding: 0 24px;
}
.tgui-7b5bccbb645b495f {
  gap: 16px;
}
.tgui-7edaaf0c57797623,
.tgui-b8dfba0b5c3d054c:hover {
  background: var(--tgui--tertiary_bg_color);
}
.tgui-56b2e897ed7ccb22,
.tgui-aaa795d78c356ac1 {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tgui-8735a62be5a8b8a7 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 2px;
  max-width: 100%;
  min-width: 0;
  padding: var(--tgui--cell--middle--padding);
}
.tgui-1c6d7865a76a19bc,
.tgui-8735a62be5a8b8a7 > * {
  overflow: hidden;
  text-overflow: ellipsis;
}
.tgui-b8dfba0b5c3d054c:not(.tgui-6c49dadccf648a5b) .tgui-1c6d7865a76a19bc,
.tgui-b8dfba0b5c3d054c:not(.tgui-6c49dadccf648a5b) .tgui-8735a62be5a8b8a7 > * {
  white-space: nowrap;
}
.tgui-46dd90b57ffed25f {
  color: var(--tgui--subtitle_text_color);
}
.tgui-a894f59f4c5ad72f {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}
.tgui-bb909928b48f948b,
.tgui-d528ef65a8b76273,
.tgui-fc059ed3ac5799a6 {
  color: var(--tgui--hint_color);
}
.tgui-7b5bccbb645b495f {
  --tgui--cell--middle--padding: 12px 0;
  padding: 0 16px;
}
.tgui-b5d680db78c4cc2e {
  cursor: pointer;
  isolation: isolate;
  position: relative;
  transition: opacity 0.15s ease-out;
}
.tgui-b5d680db78c4cc2e[readonly] {
  cursor: default;
  pointer-events: visible;
}
.tgui-b5d680db78c4cc2e[disabled] {
  cursor: default;
  opacity: 0.35;
}
.tgui-34eb6f8b96874d40:hover,
.tgui-7c5d6c1f6bbe3eaf:hover {
  opacity: 0.85;
}
.tgui-34eb6f8b96874d40:active,
.tgui-7c5d6c1f6bbe3eaf:active {
  opacity: 0.65;
}
.tgui-8071f6e38c77bc0b {
  border-radius: inherit;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: background-color 0.15s ease-out;
}
.tgui-e156954daf886976 {
  animation: tgui-81605f53eca39186 0.3s cubic-bezier(0.3, 0.3, 0.5, 1);
  background: var(--tgui--outline);
  border-radius: 50%;
  content: "";
  height: 24px;
  margin: -12px 0;
  opacity: 0;
  position: absolute;
  width: 24px;
}
@keyframes tgui-81605f53eca39186 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(8);
  }
}
.tgui-30064fce0d501f17 {
  font-size: var(--tgui--subheadline1--font_size);
  line-height: var(--tgui--subheadline1--line_height);
}
.tgui-8f63cd31b2513281 {
  font-size: var(--tgui--subheadline2--font_size);
  line-height: var(--tgui--subheadline2--line_height);
}
.tgui-c3e2e598bd70eee6 {
  font-family: var(--tgui--font-family);
}
.tgui-080a44e6ac3f4d27 {
  margin: 0;
}
.tgui-5c92f90c2701fa17 {
  font-weight: var(--tgui--font_weight--accent1);
}
.tgui-809f1f8a3f64154d {
  font-weight: var(--tgui--font_weight--accent2);
}
.tgui-5b8bdfbd2af10f59 {
  font-weight: var(--tgui--font_weight--accent3);
}
.tgui-c602097b30e4ede9 {
  text-transform: uppercase;
}
.tgui-2916d621b0ea5857 {
  font-size: var(--tgui--caption1--font_size);
  line-height: var(--tgui--caption1--line_height);
}
.tgui-937d123c23df98b3 {
  font-size: var(--tgui--caption2--font_size);
  line-height: var(--tgui--caption2--line_height);
}
.tgui-65c206f0fd891b6b {
  font-size: var(--tgui--text--font_size);
  line-height: var(--tgui--text--line_height);
}
.tgui-91c5537b51b490a7 {
  border-radius: 50%;
}
.tgui-305551eb3f5abb68.tgui-305551eb3f5abb68 {
  background-color: var(--tgui--secondary_fill);
  color: var(--tgui--link_color);
}
.tgui-30d8642662534eb5 {
  align-items: center;
  background-color: var(--tgui--tertiary_bg_color);
  box-shadow: 0 0 0 1px var(--tgui--outline);
  display: flex;
  justify-content: center;
  position: relative;
}
.tgui-1191c597a64dbd25 {
  border-radius: inherit;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  visibility: hidden;
  width: 100%;
}
.tgui-72bd4140eca37f53 .tgui-1191c597a64dbd25 {
  visibility: visible;
}
.tgui-5ee2f1c6e1da49b5 {
  align-items: center;
  display: flex;
  justify-content: center;
  position: absolute;
}
.tgui-e3bcc434a6ee9317 {
  position: absolute;
  right: -12px;
  top: -12px;
}
.tgui-562f7459d74103ea {
  align-items: center;
  border-radius: 20px;
  box-sizing: border-box;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  margin: 0 6px;
  min-width: 20px;
  padding: 0 5px;
}
.tgui-c1a5e9170826a773 {
  height: 24px;
  padding: 0 6px;
}
.tgui-4f69ed647e40e245 {
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin: 7px;
  width: 6px;
}
.tgui-6e63faaa2b33f4ae {
  background: var(--tgui--button_color);
  color: var(--tgui--button_text_color);
}
.tgui-4b52474c713ffa7c {
  background: var(--tgui--destructive_text_color);
  color: var(--tgui--button_text_color);
}
.tgui-0278f262d68294f0 {
  background: var(--tgui--secondary_fill);
  color: var(--tgui--link_color);
}
.tgui-0883e451f3707277 {
  background: var(--tgui--plain_background);
  color: var(--tgui--plain_foreground);
}
.tgui-6b3dbcedd9052940 {
  background: var(--tgui--white);
  color: var(--tgui--link_color);
}
.tgui-e05fce4753086879 {
  font-size: var(--tgui--headline--font_size);
  line-height: var(--tgui--headline--line_height);
}
.tgui-c6d7432a5c12debe {
  font-size: var(--tgui--large_title--font_size);
  line-height: var(--tgui--large_title--line_height);
}
.tgui-2fc52ee93e8068a6 {
  font-size: var(--tgui--title1--font_size);
  line-height: var(--tgui--title1--line_height);
}
.tgui-72c2a480384c4fb1 {
  font-size: var(--tgui--title2--font_size);
  line-height: var(--tgui--title2--line_height);
}
.tgui-45c5f45d3e9105f4 {
  font-size: var(--tgui--title3--font_size);
  line-height: var(--tgui--title3--line_height);
}
.tgui-54214e0db34f53c3 {
  position: absolute;
  right: -12px;
  top: 0;
}
.tgui-28e0a2576155be01 {
  display: flex;
}
.tgui-28e0a2576155be01 > :not(:first-child) {
  margin-left: -12px;
}
.tgui-28e0a2576155be01 > * {
  box-shadow: 0 0 0 3px var(--tgui--bg_color);
}
.tgui-c3d21871b48e0ba3 {
  background: var(--tgui--bg_color);
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 16px 20px;
  position: relative;
}
.tgui-7b260d7ad33f3ba0:not(.tgui-f80265c401d577b0) {
  box-shadow: var(--tgui--base--section--box_shadow);
}
.tgui-cefdf70a2d9648ea {
  border-radius: 16px;
}
.tgui-f80265c401d577b0 {
  padding: 20px;
}
.tgui-f80265c401d577b0 .tgui-2646957e5c9379f3 {
  color: var(--tgui--white);
}
.tgui-f80265c401d577b0 .tgui-62a759a0c54c3667 {
  color: var(--tgui--white);
  opacity: 0.8;
}
.tgui-d67d90bbcab86e14 {
  background: var(--tgui--bg_color);
}
.tgui-7b260d7ad33f3ba0.tgui-d67d90bbcab86e14 {
  border: 1px solid var(--tgui--outline);
  border-radius: 16px;
  box-shadow: none;
  margin: 8px 20px;
}
.tgui-cefdf70a2d9648ea.tgui-d67d90bbcab86e14 {
  background: var(--tgui--quartenary_bg_color);
  margin: 8px 16px;
}
.tgui-11921b54915b369c {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.tgui-a04b768cea14d789 {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 2px;
  z-index: var(--tgui--z-index--simple);
}
.tgui-62a759a0c54c3667 {
  color: var(--tgui--subtitle_text_color);
}
.tgui-1e638bcb841cdfbc {
  color: var(--tgui--hint_color);
}
.tgui-5e0d89b3bc8342d8 {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}
.tgui-fa2f2ea4a4ffc035 {
  border-radius: 50%;
  height: 28px;
}
.tgui-79024fcb6d81ad79 {
  background: var(--tgui--secondary_fill);
  border-left: 3px solid var(--tgui--link_color);
  border-radius: 4px;
  padding: 6px 28px 8px 12px;
  position: relative;
}
.tgui-16ed20e7a6e2daa0 {
  color: var(--tgui--text_color);
}
.tgui-bd5b6cd161834705 {
  display: block;
  position: absolute;
  right: 6px;
  top: 4px;
}
.tgui-6c9b3f1fd52a3108 {
  color: var(--tgui--link_color);
}
.tgui-117e77cd385a9c8d {
  align-items: center;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
  min-width: 80px;
  text-decoration: none;
}
.tgui-726846958fe7f4a0 {
  flex-grow: 1;
  width: 100%;
}
.tgui-117e77cd385a9c8d:after {
  background: var(--tgui--bg_color);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.15s ease-out;
}
.tgui-117e77cd385a9c8d:hover:after {
  opacity: var(--tgui--button--hovered-opacity);
}
.tgui-06cc94d03a7c4dd7,
.tgui-8310172a5320ab71 {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tgui-5f6014c0f063b6de {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: var(--tgui--z-index--simple);
}
.tgui-014f2b7d196b090d.tgui-014f2b7d196b090d {
  align-items: center;
  background: inherit;
  border-radius: inherit;
  color: var(--tgui--button--spinner-color);
  cursor: auto;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}
.tgui-13f23a224303ddaa {
  border-radius: 20px;
  gap: 6px;
  height: 36px;
  min-width: 34px;
  padding: 8px 12px;
}
.tgui-1a16a49d89076ff4 {
  gap: 8px;
  height: 42px;
  min-width: 42px;
  padding: 8px 14px;
}
.tgui-9cef742a22f195c9 {
  gap: 10px;
  height: 50px;
  padding: 10px 20px;
}
.tgui-8a1ca9efa24f4809 {
  --tgui--button--hovered-opacity: 0.15;
  --tgui--button--spinner-color: var(--tgui--button_text_color);
  background: var(--tgui--button_color);
  color: var(--tgui--button_text_color);
}
.tgui-91bda9a36246a33c {
  --tgui--button--hovered-opacity: 0.07;
  --tgui--button--spinner-color: var(--tgui--link_color);
  background: var(--tgui--secondary_fill);
  color: var(--tgui--link_color);
}
.tgui-48956537c34690db {
  --tgui--button--hovered-opacity: 0.03;
  --tgui--button--spinner-color: var(--tgui--plain_foreground);
  background: transparent;
  color: var(--tgui--link_color);
}
.tgui-93106efd6b6d66ee {
  background: var(--tgui--plain_background);
}
.tgui-93106efd6b6d66ee,
.tgui-e884e36ff1faa596 {
  --tgui--button--hovered-opacity: 0.5;
  --tgui--button--spinner-color: var(--tgui--plain_foreground);
  color: var(--tgui--plain_foreground);
}
.tgui-e884e36ff1faa596 {
  background: inherit;
  box-shadow: 0 0 0 1px var(--tgui--outline);
}
.tgui-ba6d30cc81e39ae5 {
  --tgui--button--hovered-opacity: 0.5;
  --tgui--button--spinner-color: var(--tgui--surface_dark);
  background: var(--tgui--white);
}
.tgui-55e8aa7f5cea2280.tgui-1a16a49d89076ff4 {
  border-radius: 12px;
}
.tgui-55e8aa7f5cea2280:after {
  content: unset;
}
.tgui-490cb0f5ec4998f3 .tgui-06cc94d03a7c4dd7,
.tgui-490cb0f5ec4998f3 .tgui-5f6014c0f063b6de,
.tgui-490cb0f5ec4998f3 .tgui-8310172a5320ab71 {
  opacity: 0;
}
.tgui-0ac8c3540e603b63 {
  color: var(--tgui--link_color);
}
.tgui-562a3eae646b486d {
  color: var(--tgui--hint_color);
}
.tgui-dbf261f4b3046bb3 {
  background: var(--tgui--tertiary_bg_color);
  border-radius: 20px;
  box-shadow: 0 32px 64px 0 rgba(0, 0, 0, 0.04), 0 0 2px 1px rgba(0, 0, 0, 0.02);
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.tgui-c6ad96fdf8ce4b28 {
  background: var(--tgui--plain_foreground);
}
.tgui-80c6a0ba7b3c11fd {
  --tgui--cell--middle--padding: 16px 0;
  background: var(--tgui--card_bg_color);
  padding: 0 20px;
}
.tgui-814d1971a92687e3 {
  --tgui--text_color: var(--tgui--white);
  --tgui--hint_color: hsla(0, 0%, 100%, 0.75);
  background: linear-gradient(180deg, transparent 0, var(--tgui--black) 100%);
  bottom: 0;
  left: 0;
  padding-top: 48px;
  position: absolute;
  right: 0;
}
.tgui-422c21c917cc0873 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: break-spaces;
}
.tgui-27c5a061c5f35c04 {
  font-weight: var(--tgui--font_weight--accent2);
}
.tgui-814d1971a92687e3 .tgui-27c5a061c5f35c04 {
  color: var(--tgui--white);
}
.tgui-79efb12936705a6f {
  position: absolute;
  right: 16px;
  top: 16px;
}
.tgui-6372c64c79ad2959 {
  align-items: center;
  border-radius: 10px;
  box-sizing: border-box;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  padding: 8px 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.tgui-b8b077d7e3491b30 {
  background: var(--tgui--surface_primary);
  box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.05);
}
.tgui-ccc3e4a302799418 {
  background: var(--tgui--plain_background);
}
.tgui-fdfccf8f92c11530 {
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--tgui--outline);
}
.tgui-9c7ff8cd23a6ea9a {
  color: var(--tgui--plain_foreground);
  flex: 1 1 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tgui-0d7ce20ebc0fc7aa {
  margin-right: 2px;
}
.tgui-67f596882eb2b6ab {
  align-items: center;
  color: var(--tgui--secondary_hint_color);
  display: flex;
  margin-top: 1.5px;
}
.tgui-a8ce18a8594cea9b {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--tgui--link_color);
  display: flex;
  gap: 24px;
  height: 48px;
  padding: 10px 24px;
  width: 100%;
}
.tgui-6e7ca796043fe6ca {
  color: var(--tgui--destructive_text_color);
}
.tgui-f464dba82cb8b46e {
  gap: 18px;
  height: 44px;
  padding: 8px 18px;
}
.tgui-c5be765fabc1327f {
  text-align: right;
}
.tgui-437ab2028f14c95c {
  align-items: center;
  color: var(--tgui--secondary_hint_color);
  display: flex;
  gap: 12px;
}
.tgui-4af039094fb946b4 {
  color: var(--tgui--hint_color);
  margin: 2px 0 0;
}
.tgui-97dd747d03e9d3e0 {
  align-items: center;
  color: var(--tgui--hint_color);
  display: flex;
  gap: 8px;
}
.tgui-64a5a0dc5509605e {
  flex-grow: 1;
  overflow-wrap: anywhere;
}
.tgui-3b026a2674eb3f4c {
  flex-shrink: 0;
}
.tgui-dda0e80fdf796ba5 {
  border: none;
  border-radius: 12px;
  display: inline-flex;
  padding: 8px;
}
.tgui-b92d762e02762017 {
  border-radius: 50%;
  padding: 6px;
}
.tgui-93cba8aff2e72079 {
  background: var(--tgui--secondary_fill);
  color: var(--tgui--link_color);
}
.tgui-08ef1486bc111162 {
  background: transparent;
  color: var(--tgui--link_color);
}
.tgui-2250ff52f0b5cf71 {
  background: var(--tgui--plain_background);
  color: var(--tgui--plain_foreground);
}
.tgui-53781f3cf83e8be1 {
  background: inherit;
  box-shadow: 0 0 0 1px var(--tgui--outline);
  color: var(--tgui--plain_foreground);
}
.tgui-39e9f02ce4b4b950 {
  display: flex;
  gap: 12px;
}
.tgui-b3d7f75461a64b76 {
  gap: 8px;
}
.tgui-c5545e0bc6105e48 {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 12px;
  box-sizing: border-box;
  color: var(--tgui--link_color);
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  max-width: 100%;
  min-height: 60px;
  min-width: 64px;
  padding: 0 12px;
}
.tgui-bf32cd3c110b8729 {
  gap: 4px;
  min-height: 64px;
  min-width: 72px;
}
.tgui-99a630d0096f2169 {
  background: var(--tgui--secondary_fill);
}
.tgui-30bf4976f818e8bf {
  background: var(--tgui--plain_background);
  color: var(--tgui--plain_foreground);
}
.tgui-c0c9bf3b1a53a8a4 {
  max-width: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tgui-389a43acd684137a > :not(:last-child) {
  margin-bottom: 12px;
}
.tgui-cfed40fe81d34ad5 {
  box-sizing: border-box;
  padding: 10px 18px;
}
.tgui-e5c3a5b87f8b1f46 {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
}
.tgui-9c3dbc0ef84585d4 {
  margin: 0;
  overflow-wrap: anywhere;
  text-align: center;
}
.tgui-87cd6af55f73428d {
  color: var(--tgui--hint_color);
}
.tgui-87cd6af55f73428d:not(:first-child) {
  margin-top: 8px;
}
.tgui-8e15431b81f6601e .tgui-db9be63c4fecf79b {
  background: var(--tgui--bg_color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.tgui-97eca24324122dbc .tgui-4b78bed6e925088e {
  background: var(--tgui--bg_color);
  border-radius: 12px;
}
.tgui-97eca24324122dbc .tgui-4b78bed6e925088e > :first-child {
  border-radius: 12px 12px 0 0;
  padding-top: 2px;
}
.tgui-97eca24324122dbc .tgui-4b78bed6e925088e > :last-child {
  border-radius: 0 0 12px 12px;
  padding-bottom: 2px;
}
.tgui-8af0d10d5540c6cc {
  border-top: none;
  border-color: var(--tgui--outline);
  border-width: var(--tgui--border--width);
  margin: 0;
}
.tgui-dbb364e8ced00cc8 {
  padding: 12px 24px;
}
.tgui-8c4c6f82ba895475 {
  padding: 8px 16px 0;
}
.tgui-8ebba379083b615a {
  padding: 16px 24px 20px;
  text-align: center;
}
.tgui-8c4c6f82ba895475.tgui-8ebba379083b615a {
  padding: 16px 16px 0;
}
.tgui-67471b69da3e3062 {
  color: var(--tgui--section_header_text_color);
}
.tgui-d0251b46536ac046 {
  color: var(--tgui--link_color);
  padding: 20px 24px 4px 22px;
}
.tgui-34fd1a25cc171439 {
  color: var(--tgui--text_color);
  padding-left: 24px;
}
.tgui-b7217abb24e8763a {
  color: var(--tgui--section_header_text_color);
  padding: 16px 16px 8px;
}
.tgui-b7217abb24e8763a.tgui-34fd1a25cc171439 {
  color: var(--tgui--text_color);
  padding: 0 0 12px;
}
.tgui-f492b616576c67fb {
  display: flex;
  gap: 9px;
  padding: 12px;
}
.tgui-d45985ba4cb27e5f {
  background: var(--tgui--tertiary_bg_color);
  border-radius: 2px;
  height: 3px;
  min-width: 3px;
  width: 100%;
}
.tgui-352b8d247f473986 {
  background: var(--tgui--link_color);
}
.tgui-b53f1370d519b689 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 32px 44px;
}
.tgui-732e8859c58ffb77 {
  flex-direction: row;
}
.tgui-4614301efc783534 {
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tgui-4e145f66199825da::-webkit-scrollbar {
  display: none;
}
.tgui-caaaa27ccfa566b7 {
  --tgui--timeline--item--thickness: 4px;
  --tgui--timeline--item--size: 12px;
  display: flex;
  gap: 32px;
}
.tgui-caaaa27ccfa566b7:last-child .tgui-3fc2f0d7045d23d8 {
  display: none;
}
.tgui-0f46575488c31b93 {
  min-width: var(--tgui--timeline--item--size);
  position: relative;
}
.tgui-d7ba9c56743387af {
  border-radius: 50%;
  height: var(--tgui--timeline--item--size);
  left: 0;
  top: 4px;
  width: var(--tgui--timeline--item--size);
}
.tgui-3fc2f0d7045d23d8,
.tgui-d7ba9c56743387af {
  background: var(--tgui--quartenary_bg_color);
  position: absolute;
}
.tgui-3fc2f0d7045d23d8 {
  border-radius: 2px;
  bottom: 0;
  height: calc(100% - 4px);
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: var(--tgui--timeline--item--thickness);
}
.tgui-bf9f87dd32ecad81 {
  overflow: hidden;
}
.tgui-2b850faa8f3a520a {
  display: inline-block;
  margin-bottom: 4px;
}
.tgui-b9a4d9afcd70e355 {
  color: var(--tgui--hint_color);
}
.tgui-581d134185fd28b4 .tgui-d7ba9c56743387af,
.tgui-dcd66bc07faad440 .tgui-3fc2f0d7045d23d8,
.tgui-dcd66bc07faad440 .tgui-d7ba9c56743387af {
  background: var(--tgui--link_color);
}
.tgui-566b727e7a35e935 .tgui-0f46575488c31b93 {
  --tgui--timeline--item--size: 16px;
}
.tgui-566b727e7a35e935 .tgui-d7ba9c56743387af {
  top: 6px;
}
.tgui-566b727e7a35e935 .tgui-3fc2f0d7045d23d8 {
  height: calc(100% + 26px);
  top: 6px;
}
.tgui-f461f2eeb28c21d0 {
  flex-direction: column;
  gap: 24px;
}
.tgui-f461f2eeb28c21d0 .tgui-0f46575488c31b93 {
  align-items: center;
  display: flex;
  height: var(--tgui--timeline--item--size);
}
.tgui-f461f2eeb28c21d0 .tgui-d7ba9c56743387af {
  top: 0;
}
.tgui-f461f2eeb28c21d0 .tgui-3fc2f0d7045d23d8 {
  height: var(--tgui--timeline--item--thickness);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 36px);
}
.tgui-f461f2eeb28c21d0 .tgui-2b850faa8f3a520a {
  white-space: nowrap;
}
.tgui-81a5164cd16c05d5 {
  stroke: var(--tgui--link_color);
  transform: rotate(-90deg);
}
.tgui-ced47fd163a53511 {
  border-radius: 2px;
  height: 4px;
  overflow: hidden;
  position: relative;
}
.tgui-44060f289fdbdb84:after {
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.4;
  right: 0;
  top: 0;
}
.tgui-027278a6d6708965,
.tgui-44060f289fdbdb84:after {
  background: var(--tgui--link_color);
  position: absolute;
}
.tgui-027278a6d6708965 {
  border-radius: inherit;
  height: 100%;
  transition: width 0.2s ease;
  z-index: var(--tgui--z-index--simple);
}
.tgui-97f2df57786b02dc {
  position: relative;
}
.tgui-3eb6091f664c15d6:after,
.tgui-3eb6091f664c15d6:before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: var(--tgui--z-index--simple);
}
.tgui-97f2df57786b02dc:before {
  background: var(--tgui--secondary_bg_color);
}
.tgui-97f2df57786b02dc:not(.tgui-ecf101b3117a96c8):after {
  animation: tgui-3a837cc9661e7502 1.8s linear infinite;
  background-color: var(--tgui--bg_color);
  z-index: var(--tgui--z-index--skeleton);
}
@keyframes tgui-3a837cc9661e7502 {
  0%,
  to {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}
.tgui-bed09b0692380ce7 {
  animation: tgui-738ce40067f9bb6e 0.34s cubic-bezier(0.3, 0.3, 0.5, 1);
  bottom: 10px;
  box-sizing: border-box;
  left: 10px;
  max-width: 460px;
  position: fixed;
  right: 10px;
  transition: transform 0.32s cubic-bezier(0.3, 0.3, 0.5, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.tgui-a869502f11f22b6c {
  align-items: center;
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  background: var(--tgui--surface_dark);
  border-radius: 10px;
  bottom: 0;
  box-sizing: border-box;
  display: flex;
  gap: 12px;
  left: 0;
  padding: 10px 16px 10px 10px;
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
}
.tgui-a1e25a2488982fc5 {
  transform: translate3d(0, 140%, 0);
}
.tgui-c2ca59c94a46245e {
  bottom: 16px;
}
.tgui-c2ca59c94a46245e .tgui-a869502f11f22b6c {
  border-radius: 14px;
}
.tgui-093aea87229643ac,
.tgui-229bfa1a0a8ac43f {
  align-items: center;
  color: var(--tgui--toast_accent_color);
  display: flex;
}
.tgui-7d8f183ba67229e9 {
  color: var(--tgui--white);
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 1px;
}
@keyframes tgui-738ce40067f9bb6e {
  0% {
    transform: translate3d(0, 140%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.tgui-4d26fba7185ffa9f {
  background: transparent;
  border: none;
  color: var(--tgui--toast_accent_color);
  padding: 0;
}
.tgui-86f452d8e92a2075 {
  display: table;
  position: relative;
}
.tgui-86f452d8e92a2075:before {
  background-color: var(--tgui--bg_color);
  background-image: url(images/a6853f..svg);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s ease;
  z-index: var(--tgui--z-index--simple);
}
.tgui-aff2a6268e887037:before {
  opacity: 0;
}
.tgui-abbb25a9ce45033e {
  cursor: pointer;
  position: relative;
}
.tgui-6e9776e8c33b2626 {
  cursor: default;
  opacity: 0.3;
}
.tgui-21b20ecaad17ccf9 {
  color: var(--tgui--outline);
  display: block;
}
.tgui-bca5056bf34297b0 {
  color: var(--tgui--link_color);
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.15s ease-out;
}
.tgui-60cf4cc79ba44c4f:checked ~ .tgui-bca5056bf34297b0 {
  opacity: 1;
}
.tgui-b9fd8cdf929947df {
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
  clip-path: inset(50%);
  opacity: 0;
  overflow: hidden;
}
.tgui-a03137b1ed760aaf {
  display: flex;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px 10px 16px;
}
.tgui-ca1c0e2d013ae260 {
  min-height: 50px;
  padding: 10px 16px;
}
.tgui-f3ab78c8048cb9dc {
  align-items: center;
  background: conic-gradient(
    from 0deg at 50% 50%,
    #0c28ff 0deg,
    #03ffff 60deg,
    #24d627 120deg,
    #fdff22 180deg,
    #ff2227 240deg,
    #fe2df6 300deg,
    #7122ff 1turn
  );
  border-radius: 50%;
  display: flex;
  height: 24px;
  justify-content: center;
  position: relative;
  width: 24px;
}
.tgui-93beab8699996b1e {
  border-radius: 50%;
  height: 16px;
  width: 16px;
}
.tgui-93beab8699996b1e:after,
.tgui-93beab8699996b1e:before {
  border-radius: inherit;
  content: "";
  position: absolute;
}
.tgui-93beab8699996b1e:before {
  background: var(--tgui--bg_color);
  bottom: 2px;
  left: 2px;
  right: 2px;
  top: 2px;
}
.tgui-93beab8699996b1e:after {
  background: inherit;
  bottom: 4px;
  left: 4px;
  right: 4px;
  top: 4px;
}
.tgui-21dba5277ef0ddd7 {
  flex: 1 1 0;
}
.tgui-8ca550c2fc85eff5 {
  background: var(--tgui--bg_color);
  padding: 20px 22px 16px;
  position: relative;
}
.tgui-8ca550c2fc85eff5 .tgui-9f9a52f695b85cc9 {
  background: var(--tgui--bg_color);
  border-radius: 5px;
  color: var(--tgui--secondary_hint_color);
  left: 32px;
  max-width: calc(100% - 32px * 2 - 22px);
  overflow: hidden;
  padding: 0 6px;
  position: absolute;
  text-overflow: ellipsis;
  top: 6px;
  white-space: nowrap;
}
.tgui-4a83fef1f04acb0e {
  pointer-events: none;
  position: relative;
}
.tgui-7707c5d942b7b9af.tgui-4a83fef1f04acb0e {
  opacity: 0.35;
}
.tgui-8ca550c2fc85eff5.tgui-4a83fef1f04acb0e:after {
  background: var(--tgui--bg_color);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
}
.tgui-0f5050defacbf813 {
  align-items: center;
  box-sizing: border-box;
  display: flex;
}
.tgui-16b3783d394bc7db,
.tgui-8f04eff653cfa5e5 {
  display: flex;
}
.tgui-8ca550c2fc85eff5 .tgui-0f5050defacbf813 {
  border-radius: 14px;
  box-shadow: 0 0 0 2px var(--tgui--outline);
}
.tgui-8ca550c2fc85eff5.tgui-41b168516bddcf4b .tgui-9f9a52f695b85cc9 {
  color: var(--tgui--destructive_text_color);
}
.tgui-8ca550c2fc85eff5.tgui-41b168516bddcf4b .tgui-0f5050defacbf813 {
  box-shadow: 0 0 0 2px var(--tgui--destructive_text_color);
}
.tgui-8ca550c2fc85eff5.tgui-89277928456f0e30 .tgui-9f9a52f695b85cc9 {
  color: var(--tgui--link_color);
}
.tgui-8ca550c2fc85eff5.tgui-89277928456f0e30 .tgui-0f5050defacbf813 {
  box-shadow: 0 0 0 2px var(--tgui--link_color);
}
.tgui-7707c5d942b7b9af .tgui-0f5050defacbf813 {
  background: var(--tgui--bg_color);
  border-radius: 12px;
}
.tgui-7707c5d942b7b9af.tgui-41b168516bddcf4b .tgui-0f5050defacbf813 {
  box-shadow: 0 0 0 1.5px var(--tgui--destructive_text_color);
}
.tgui-d9de1f32aee12a15 {
  gap: 12px;
  padding: 12px 16px;
}
.tgui-9b2ad13855aef059 {
  min-height: 48px;
}
.tgui-c4863cd4c893a047 {
  background: transparent;
  border: 0;
  box-sizing: border-box;
  color: var(--tgui--text_color);
  display: block;
  margin: 0;
  outline: 0;
  padding: 0;
  resize: none;
  text-overflow: ellipsis;
  width: 100%;
}
.tgui-c4863cd4c893a047::-webkit-inner-spin-button,
.tgui-c4863cd4c893a047::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.tgui-c4863cd4c893a047::-moz-placeholder {
  color: var(--tgui--secondary_hint_color);
}
.tgui-c4863cd4c893a047::placeholder {
  color: var(--tgui--secondary_hint_color);
}
.tgui-6cca8a28a056cc34 {
  --tgui--multiselect--min-height: 52px;
  min-height: var(--tgui--multiselect--min-height);
  position: relative;
  width: 100%;
}
.tgui-1ed7193796bd9fff.tgui-1ed7193796bd9fff {
  min-height: var(--tgui--multiselect--min-height);
  padding-right: 48px;
}
.tgui-e9b05eb8feaa0359 {
  color: var(--tgui--secondary_hint_color);
  position: absolute;
  right: 16px;
}
.tgui-c56e136f855e5144 {
  --tgui--multiselect--gap: 8px;
  box-sizing: border-box;
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-wrap: wrap;
  gap: var(--tgui--multiselect--gap);
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 8px;
  position: relative;
}
.tgui-991d85450550abb9 {
  max-width: calc(100% - var(--tgui--multiselect--gap));
  padding: 6px 12px;
}
.tgui-41e02fd2529dfbd2 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--tgui--text_color);
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  outline: none;
  padding: 0 8px;
  position: relative;
  width: 100%;
}
.tgui-41e02fd2529dfbd2::-moz-placeholder {
  color: var(--tgui--secondary_hint_color);
}
.tgui-41e02fd2529dfbd2::placeholder {
  color: var(--tgui--secondary_hint_color);
}
.tgui-41e02fd2529dfbd2[readonly] {
  cursor: default;
}
.tgui-ac1d436c45aafe04 .tgui-41e02fd2529dfbd2 {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tgui-0b4134fd8d5c05ac {
  color: var(--tgui--hint_color);
  display: flex;
}
.tgui-70d34454bcf3c3e4 {
  background: var(--tgui--bg_color);
  border-radius: 12px;
  box-shadow: 0 32px 64px 0 rgba(0, 0, 0, 0.04), 0 0 2px 1px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  margin-top: 8px;
  max-height: 168px;
  overflow-y: scroll;
  width: 100%;
}
.tgui-6a25d2bd42bb932c {
  color: var(--tgui--hint_color);
}
.tgui-15f9ec3c119467a6 {
  height: 48px;
  padding: 0 16px;
}
.tgui-e3f4e376df0c272c {
  color: var(--tgui--link_color);
}
.tgui-e9c83f4f150e5513 {
  z-index: var(--tgui--z-index--simple);
}
.tgui-97a62789a70393d0 {
  position: absolute;
}
.tgui-6ae8c47f9448321b {
  content: "";
  display: block;
  transform: translateY(1px);
}
.tgui-6c3deae89ec68e99 {
  transform: rotate(90deg) translate(50%, -50%);
  transform-origin: right;
}
.tgui-fed67e27ad8cb75f {
  transform: rotate(180deg);
}
.tgui-b27d1c4f6222569e {
  transform: rotate(-90deg) translate(-50%, -50%);
  transform-origin: left;
}
.tgui-9bfdebc3fdae031b {
  cursor: pointer;
  position: relative;
}
.tgui-55c1caaee1c1e33e {
  cursor: default;
  opacity: 0.25;
}
.tgui-18734a5360b84fba {
  color: var(--tgui--outline);
  display: block;
}
.tgui-1ec4b447aa5cf66a {
  color: var(--tgui--link_color);
  opacity: 0;
  position: absolute;
  top: 0;
}
.tgui-18734a5360b84fba,
.tgui-1ec4b447aa5cf66a {
  transition: opacity 0.15s ease-out;
}
.tgui-7cd9bbef46d9194c:checked ~ .tgui-18734a5360b84fba {
  opacity: 0;
}
.tgui-7cd9bbef46d9194c:checked ~ .tgui-1ec4b447aa5cf66a {
  opacity: 1;
}
.tgui-a641ca1e63331268 {
  background: var(--tgui--bg_color);
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  padding: 32px 20px;
  position: fixed;
  right: 0;
  top: 0;
}
.tgui-a40b67b8ec9e3a49,
.tgui-a641ca1e63331268 {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.tgui-a40b67b8ec9e3a49 {
  flex: 1 1 0;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tgui-bf64531d065e1bd9 .tgui-a40b67b8ec9e3a49 {
  flex: unset;
}
.tgui-7df9ee9d6d6586de,
.tgui-a40b67b8ec9e3a49 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tgui-7df9ee9d6d6586de {
  max-width: 100%;
  text-align: center;
}
.tgui-36c453f0a9d51371 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.tgui-0e77c7f1a1b82c84 {
  --tgui--pin_input--buttons-gap: 12px;
  --tgui--pin_input--button-width: 33.3%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--tgui--pin_input--buttons-gap);
  margin-top: 52px;
  width: 100%;
}
.tgui-bf64531d065e1bd9 .tgui-0e77c7f1a1b82c84 {
  --tgui--pin_input--button-width: 76px;
}
.tgui-49b69c407401f76c {
  display: flex;
  gap: var(--tgui--pin_input--buttons-gap);
  justify-content: center;
}
.tgui-49b69c407401f76c:last-child {
  justify-content: flex-end;
  margin-left: calc(var(--tgui--pin_input--buttons-gap) * 2);
}
.tgui-bf64531d065e1bd9 .tgui-49b69c407401f76c:last-child {
  justify-content: center;
  margin-left: calc(
    var(--tgui--pin_input--button-width) + var(--tgui--pin_input--buttons-gap)
  );
}
.tgui-14d79626209a204a {
  color: var(--tgui--link_color);
  display: block;
  margin: auto;
}
.tgui-6eaa561b38208c72 {
  background: var(--tgui--tertiary_bg_color);
  border: none;
  border-radius: 16px;
  color: var(--tgui--text_color);
  height: 56px;
  padding: 0;
  width: var(--tgui--pin_input--button-width);
}
.tgui-3bea52c968cee224 {
  border-radius: 50%;
  height: 76px;
  width: 76px;
}
.tgui-bad1e0d3a612c110 {
  align-items: center;
  background: var(--tgui--bg_color);
  border: 2.5px solid var(--tgui--divider);
  border-radius: 12px;
  display: flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s ease-out;
  width: 40px;
}
.tgui-b9a1527d00258387 {
  background: var(--tgui--link_color);
  border: none;
  border-radius: 50%;
  height: 13px;
  opacity: 0.1;
  width: 13px;
}
.tgui-b9a1527d00258387.tgui-1d6fb1351888c5e0 {
  opacity: 1;
}
.tgui-bad1e0d3a612c110:focus-within {
  border-color: var(--tgui--link_color);
}
.tgui-9fa4f4531187df59 {
  background: var(--tgui--text_color);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.tgui-de477a8e3910f19f {
  cursor: pointer;
  position: relative;
}
.tgui-d5c5e7402bfd8c12 {
  cursor: default;
  opacity: 0.25;
}
.tgui-bfcd091645843388 {
  color: var(--tgui--outline);
  display: block;
}
.tgui-8d2d5ba97b4abd79 {
  color: var(--tgui--link_color);
  opacity: 0;
  position: absolute;
  top: 0;
}
.tgui-8d2d5ba97b4abd79,
.tgui-bfcd091645843388 {
  transition: opacity 0.15s ease-out;
}
.tgui-743a4b0f25e5d51b:checked ~ .tgui-bfcd091645843388 {
  opacity: 0;
}
.tgui-743a4b0f25e5d51b:checked ~ .tgui-8d2d5ba97b4abd79 {
  opacity: 1;
}
.tgui-0487bdb4329cd879 {
  display: flex;
  gap: 4px;
  padding: 12px;
  position: relative;
}
.tgui-6169bc2e9d6fdeb8 {
  color: var(--tgui--tertiary_bg_color);
  position: relative;
}
.tgui-6169bc2e9d6fdeb8:focus-visible {
  outline: 2px solid var(--tgui--link_color);
}
.tgui-f0faaa15f44569ba {
  color: var(--tgui--link_color);
  position: absolute;
}
.tgui-52ba7059852e9950 {
  bottom: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.tgui-919c5658483cae11 {
  position: relative;
}
.tgui-a0742fd4c73756f7 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  border: none;
  border-radius: inherit;
  color: var(--tgui--text_color);
  outline: none;
  padding: 12px 58px 12px 16px;
  width: 100%;
}
.tgui-025a45d791e466f6 {
  color: var(--tgui--secondary_hint_color);
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.tgui-aa094d6480bfa32a {
  cursor: pointer;
  position: relative;
}
.tgui-7d31e315f5cc4733 {
  cursor: default;
  opacity: 0.25;
}
.tgui-ad96577f259c5732 {
  color: var(--tgui--link_color);
  display: block;
  opacity: 0;
  transition: opacity 0.15s ease-out;
}
.tgui-6988c618806a5171:checked ~ .tgui-ad96577f259c5732 {
  opacity: 1;
}
.tgui-717c3649db8d5af2 {
  --tgui--slider--thumb--size: 12px;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 24px;
  min-height: 52px;
  padding: 16px 24px;
}
.tgui-35faba867393ce37 {
  border-radius: 8px;
  cursor: pointer;
  height: var(--tgui--slider--thumb--size);
  position: relative;
  width: 100%;
}
.tgui-c591a831de13ba23 {
  cursor: default;
  opacity: 0.35;
}
.tgui-4de4feff2dcc975c,
.tgui-e11a455378c63b15 {
  border-radius: inherit;
  height: 3px;
  left: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
}
.tgui-e11a455378c63b15 {
  align-items: center;
  background-color: var(--tgui--tertiary_bg_color);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.tgui-4de4feff2dcc975c {
  background: var(--tgui--button_color);
  width: auto;
}
.tgui-7fe9f0fbc9771947 {
  height: 100%;
  isolation: isolate;
  margin-left: calc(var(--tgui--slider--thumb--size) / 10);
  margin-right: calc(var(--tgui--slider--thumb--size) / 10);
  position: relative;
  z-index: var(--tgui--z-index--simple);
}
.tgui-6598607160233201,
.tgui-a56564bcfd4b56e5 {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 3px;
}
.tgui-d2e2a2e28ef0f746 {
  --tgui--slider--thumb--size: 24px;
  gap: 20px;
  padding: 20px;
}
.tgui-d2e2a2e28ef0f746 .tgui-4de4feff2dcc975c,
.tgui-d2e2a2e28ef0f746 .tgui-e11a455378c63b15 {
  height: 4px;
  margin-top: -2px;
}
.tgui-b632646f586ff14d {
  background: var(--tgui--secondary_hint_color);
  border-radius: 50%;
  height: 2px;
  position: absolute;
  width: 2px;
}
.tgui-2b0a006b5a9ffd68 {
  background: var(--tgui--secondary_hint_color);
  opacity: 0.35;
}
.tgui-7951a89b824476b3 {
  background: var(--tgui--tertiary_bg_color);
  border-radius: 3px;
  height: 20px;
  width: 4px;
}
.tgui-7951a89b824476b3.tgui-2b0a006b5a9ffd68 {
  background: var(--tgui--button_color);
  opacity: 1;
}
.tgui-b632646f586ff14d:not(.tgui-7951a89b824476b3):first-child {
  transform: translateX(50%);
}
.tgui-b632646f586ff14d:last-child {
  transform: translateX(-150%);
}
.tgui-7951a89b824476b3:last-child {
  transform: translateX(-100%);
}
.tgui-83b7253102c6addc {
  background: var(--tgui--button_color);
  border-radius: 50%;
  height: var(--tgui--slider--thumb--size);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--tgui--slider--thumb--size);
  z-index: var(--tgui--z-index--simple);
}
.tgui-96f5864d281f94a8 {
  background: var(--tgui--white);
  box-shadow: 0 6px 6.5px rgba(0, 0, 0, 0.12), 0 0.5px 2px rgba(0, 0, 0, 0.12);
}
.tgui-abdeb837bfc726cb {
  height: 100%;
  width: 100%;
}
.tgui-a1dc55b304d32032 {
  align-items: center;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  height: 32px;
  overflow: hidden;
  position: relative;
  width: 52px;
}
.tgui-57a00e000de7483d {
  cursor: default;
  opacity: 0.4;
}
.tgui-3acc6d0262399734:before {
  background: var(--tgui--secondary_bg_color);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.tgui-2776944549f431fc .tgui-3acc6d0262399734:before {
  border: 3px solid var(--tgui--secondary_hint_color);
  border-radius: 16px;
}
.tgui-3acc6d0262399734:after {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tgui-2776944549f431fc .tgui-3acc6d0262399734:after {
  background: var(--tgui--secondary_hint_color);
  height: 16px;
  margin-left: 8px;
  width: 16px;
}
.tgui-b70ccb0e7742541a .tgui-3acc6d0262399734:after {
  background: var(--tgui--white);
  box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.06), 0 3px 8px 0 rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  height: 28px;
  margin-left: 2px;
  width: 28px;
}
.tgui-edfaab8ff474b0de:checked + .tgui-3acc6d0262399734:before {
  background-color: var(--tgui--link_color);
  border-color: var(--tgui--link_color);
}
.tgui-2776944549f431fc
  .tgui-edfaab8ff474b0de:checked
  + .tgui-3acc6d0262399734:after {
  height: 24px;
  width: 24px;
}
.tgui-edfaab8ff474b0de:checked + .tgui-3acc6d0262399734:after {
  transform: translateX(20px) translateY(-50%);
}
.tgui-2776944549f431fc
  .tgui-edfaab8ff474b0de:checked
  + .tgui-3acc6d0262399734:after {
  background: var(--tgui--white);
  transform: translateX(16px) translateY(-50%);
}
@media (prefers-reduced-motion: no-preference) {
  .tgui-3acc6d0262399734:before {
    transition: background-color, border-color 67ms linear;
  }
  .tgui-3acc6d0262399734:after {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  }
  .tgui-b70ccb0e7742541a .tgui-3acc6d0262399734:before {
    transition: background-color 0.2s ease;
  }
  .tgui-b70ccb0e7742541a .tgui-3acc6d0262399734:after {
    transition: transform 0.2s cubic-bezier(0.36, -0.24, 0.26, 1.32);
  }
}
.tgui-d40ec83150e66029 {
  background: inherit;
  border: none;
  border-radius: inherit;
  color: var(--tgui--text_color);
  min-height: 80px;
  outline: none;
  padding: 12px 16px;
  resize: none;
  width: 100%;
}
.tgui-d40ec83150e66029::-moz-placeholder {
  color: var(--tgui--secondary_hint_color);
}
.tgui-d40ec83150e66029::placeholder {
  color: var(--tgui--secondary_hint_color);
}
.tgui-2453b62de8016bfa .tgui-d40ec83150e66029 {
  min-height: 84px;
  padding: 16px;
}
.tgui-7a5facec9dc28fae {
  left: 0;
  position: fixed;
  right: 0;
}
.tgui-d83e15d73344cdc0 {
  top: 0;
}
.tgui-01790b7e59088ea5 {
  bottom: 0;
  padding-bottom: var(--tgui--safe_area_inset_bottom);
}
.tgui-53cb2ebed0c3b08f {
  background: var(--tgui--surface_primary);
  box-shadow: 0 -1px 0 var(--tgui--divider);
  display: flex;
  justify-items: stretch;
  padding: 0 16px;
}
.tgui-a2b4713d67582227 {
  padding: 0;
}
.tgui-64cd0db020a9bacf {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--tgui--secondary_hint_color);
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  padding: 12px 16px 16px;
  transition: 0.15s ease-out;
}
.tgui-ecbb746748ea4134 {
  gap: 4px;
  padding: 8px 12px 4px;
}
.tgui-e6658d0b8927f95e {
  color: var(--tgui--link_color);
}
.tgui-e6658d0b8927f95e:not(.tgui-ecbb746748ea4134) .tgui-44d48e11585af170 {
  background: var(--tgui--secondary_fill);
}
.tgui-44d48e11585af170 {
  border-radius: 35px;
  display: flex;
  justify-content: center;
  min-width: 64px;
  padding: 2px 10px;
}
.tgui-ecbb746748ea4134 .tgui-44d48e11585af170 {
  padding: 0;
}
.tgui-aeab497081949a15 {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tgui-0eddcd83377979c2,
.tgui-68fc52f1068b8e16 {
  align-items: center;
  display: flex;
}
.tgui-0eddcd83377979c2 {
  color: var(--tgui--divider);
  height: 20px;
  justify-content: center;
  margin: 0 -6px;
  width: 24px;
}
.tgui-a9c3d618b6e43d64 {
  color: var(--tgui--link_color);
}
.tgui-32fe6ce00169d72e {
  border-radius: 8px;
  color: var(--tgui--hint_color);
  cursor: pointer;
  padding: 8px 10px;
  text-decoration: none;
  transition: opacity 0.15s ease-out;
}
.tgui-32fe6ce00169d72e:hover {
  background: var(--tgui--tertiary_bg_color);
}
.tgui-32fe6ce00169d72e:active {
  opacity: 0.5;
}
.tgui-442a9579d6c19dc4 {
  --tgui--compact_pagination--dot--opacity--selected: 0.1;
  --tgui--compact_pagination--dot--background--selected: var(
    --tgui--link_color
  );
  display: inline-flex;
  gap: 8px;
  padding: 4px;
}
.tgui-15adbef8fe5efed9 {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 28px;
  padding: 8px 9px;
}
.tgui-15adbef8fe5efed9,
.tgui-cdc228e9d92dac5b {
  --tgui--compact_pagination--dot--opacity--selected: 0.25;
  --tgui--compact_pagination--dot--background--selected: var(--tgui--white);
  gap: 6px;
}
.tgui-cdc228e9d92dac5b {
  padding: 0;
}
.tgui-747563e660315b07 {
  background: var(
    --tgui--compact_pagination--dot--background--selected,
    var(--tgui--link_color)
  );
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 8px;
  opacity: var(--tgui--compact_pagination--dot--opacity--selected, 0.25);
  padding: 0;
  transition: opacity 0.15s ease-in-out;
  width: 8px;
}
.tgui-6d14364fac453a65 {
  opacity: 1;
}
.tgui-bfabaddd169233a9 {
  color: var(--tgui--link_color);
  text-decoration: none;
}
.tgui-38580a5c868cecc4 {
  display: flex;
  gap: 8px;
  padding: 16px;
}
.tgui-645f8efe8c9c3cc5 {
  opacity: 0.35;
}
.tgui-8dab5cf704c88e82 {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 12px;
  box-sizing: border-box;
  color: var(--tgui--hint_color);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  min-width: 44px;
  padding: 0 10px;
}
.tgui-64016be270020f33 {
  background: var(--tgui--tertiary_bg_color);
  color: var(--textColor);
}
.tgui-a43e090d3501d4ca {
  cursor: default;
  opacity: 0.35;
}
.tgui-670c6b2f3c8df445 {
  cursor: default;
  opacity: 1;
}
.tgui-2636b28cb21c42cc {
  color: var(--tgui--link_color);
}
.tgui-71259e3311d7116e {
  background: var(--tgui--tertiary_bg_color);
  border-radius: 44px;
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
  padding: 2px;
  width: 100%;
}
.tgui-b0a9057ab5d33005 {
  align-content: stretch;
  align-items: center;
  border-radius: inherit;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  position: relative;
  width: 100%;
}
.tgui-31f461ccfea23ec3 {
  background: var(--tgui--segmented_control_active_bg);
  border-radius: 40px;
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.15s;
  z-index: var(--tgui--z-index--simple);
}
.tgui-16c6b1986a48e2b5 {
  background: var(--tgui--tertiary_bg_color);
  border-radius: 9px;
}
.tgui-16c6b1986a48e2b5 .tgui-31f461ccfea23ec3 {
  border: var(--tgui--border--width) solid rgba(0, 0, 0, 0.04);
  border-radius: inherit;
  box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.04), 0 3px 8px 0 rgba(0, 0, 0, 0.12);
}
.tgui-bbfb272d22eb23e8 {
  background: transparent;
  border: none;
  border-radius: inherit;
  color: var(--tgui--text_color);
  flex: 1 1 0;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: var(--tgui--z-index--simple);
}
.tgui-513fce1023cbbd63 {
  padding: 6px 24px;
}
.tgui-89d3925598b8fd68 {
  align-content: stretch;
  align-items: center;
  display: flex;
  gap: 12px;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.tgui-8e986e14448c29e6 {
  background: var(--tgui--button_color);
  border-radius: 4px 4px 1px 1px;
  bottom: 0;
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform 125ms;
}
.tgui-96892ceed80c1bf3 {
  background: transparent;
  border: none;
  border-radius: inherit;
  color: var(--tgui--secondary_hint_color);
  flex: 1 0 0;
  height: 44px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 125ms;
  white-space: nowrap;
}
.tgui-44ea091aea23df33 {
  color: var(--tgui--link_color);
}
.tgui-cc76354712c6e8d9 {
  background-color: var(--tgui--bg_color);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  max-height: 96%;
  outline: none;
  position: fixed;
  right: 0;
  z-index: var(--tgui--z-index--overlay);
}
.tgui-2c53ae2ef0209d4d {
  align-items: center;
  border-bottom: 1px solid var(--tgui--divider);
  display: flex;
  justify-content: space-between;
  padding: 16px;
}
.tgui-5dc6ad1ca3ac3ed4 {
  overflow-y: auto;
  padding-bottom: var(--tgui--safe_area_inset_bottom);
}
.tgui-f67c8fb3553eee55 {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 16px;
  position: relative;
}
.tgui-f67c8fb3553eee55:before {
  background: var(--tgui--divider);
  border-radius: 4px;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 36px;
}
.tgui-09b5f6cfd7ba56ab,
.tgui-fe1d6742d85038d7 {
  align-items: center;
  display: flex;
  flex: 1 0 0;
}
.tgui-09b5f6cfd7ba56ab {
  justify-content: flex-start;
}
.tgui-fe1d6742d85038d7 {
  justify-content: flex-end;
}
.tgui-7ce1022bfdcb0ae3 {
  --tgui--text--line_height: 28px;
  display: block;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tgui-3197096cb603b35a {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: var(--tgui--z-index--overlay);
}
.tgui-5638a4ef4e806d8c {
  background: var(--tgui--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
  color: var(--tgui--black);
  padding: 10px;
}
.tgui-bc60ca772e3ae3c6 {
  background: var(--tooltip_background_dark);
  box-shadow: none;
}
.tgui-5638a4ef4e806d8c .tgui-e0107e1e5ea5b9f3,
.tgui-bc60ca772e3ae3c6 {
  color: var(--tgui--white);
}
.tgui-bc60ca772e3ae3c6 .tgui-e0107e1e5ea5b9f3 {
  color: var(--tooltip_background_dark);
}
.tgui-e37c114229ebfe85 .tgui-bc60ca772e3ae3c6 {
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
.tgui-6a12827a138e8827 {
  --tgui--font-family: system-ui, -apple-system, BlinkMacSystemFont, "Roboto",
    "Apple Color Emoji", "Helvetica Neue", sans-serif;
  --tgui--font_weight--accent1: 700;
  --tgui--font_weight--accent2: 600;
  --tgui--font_weight--accent3: 400;
  --tgui--large_title--font_size: 34px;
  --tgui--large_title--line_height: 42px;
  --tgui--title1--font_size: 28px;
  --tgui--title1--line_height: 36px;
  --tgui--title2--font_size: 24px;
  --tgui--title2--line_height: 32px;
  --tgui--title3--font_size: 20px;
  --tgui--title3--line_height: 24px;
  --tgui--headline--font_size: 19px;
  --tgui--headline--line_height: 28px;
  --tgui--text--font_size: 17px;
  --tgui--text--line_height: 26px;
  --tgui--subheadline1--font_size: 16px;
  --tgui--subheadline1--line_height: 24px;
  --tgui--subheadline2--font_size: 15px;
  --tgui--subheadline2--line_height: 22px;
  --tgui--caption1--font_size: 13px;
  --tgui--caption1--line_height: 20px;
  --tgui--caption2--font_size: 11px;
  --tgui--caption2--line_height: 16px;
  --tgui--border--width: 1px;
  --tgui--base--section--box_shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  --tgui--bg_color: var(--tg-theme-bg-color, #fff);
  --tgui--text_color: var(--tg-theme-text-color, #000);
  --tgui--hint_color: var(--tg-theme-hint-color, #707579);
  --tgui--link_color: var(--tg-theme-link-color, #007aff);
  --tgui--button_color: var(--tg-theme-button-color, #007aff);
  --tgui--button_text_color: var(--tg-theme-button-text-color, #fff);
  --tgui--secondary_bg_color: var(--tg-theme-secondary-bg-color, #efeff4);
  --tgui--header_bg_color: var(--tg-theme-header-bg-color, #fff);
  --tgui--accent_text_color: var(--tg-theme-accent-text-color, #007aff);
  --tgui--section_bg_color: var(--tg-theme-section-bg-color, #fff);
  --tgui--section_header_text_color: var(
    --tg-theme-section-header-text-color,
    #707579
  );
  --tgui--subtitle_text_color: var(--tg-theme-subtitle-text-color, #707579);
  --tgui--destructive_text_color: var(
    --tg-theme-destructive-text-color,
    #e53935
  );
  --tgui--skeleton: hsla(0, 0%, 100%, 0.03);
  --tgui--divider: rgba(0, 0, 0, 0.15);
  --tgui--outline: rgba(0, 0, 0, 0.05);
  --tgui--surface_primary: hsla(0, 0%, 100%, 0.95);
  --tgui--tertiary_bg_color: #f4f4f7;
  --tgui--quartenary_bg_color: #f6f6fa;
  --tgui--segmented_control_active_bg: #fff;
  --tgui--card_bg_color: #fff;
  --tgui--secondary_hint_color: #a2acb0;
  --tgui--secondary_fill: rgba(67, 120, 255, 0.1);
  --tgui--green: #31d158;
  --tgui--destructive_background: #e53935;
  --tgui--primary_code_highlight: #4378ff;
  --tgui--secondary_code_highlight: #b00fb4;
  --tgui--tertiary_code_highlight: #3a9f20;
  --tgui--plain_background: rgba(0, 0, 0, 0.04);
  --tgui--plain_foreground: rgba(0, 0, 0, 0.8);
  --tgui--toast_accent_color: #55a6ff;
  --tgui--surface_dark: rgba(56, 56, 56, 0.85);
  --tooltip_background_dark: rgba(0, 0, 0, 0.85);
  --tgui--white: #fff;
  --tgui--black: #000;
  --tgui--z-index--simple: 1;
  --tgui--z-index--skeleton: 2;
  --tgui--z-index--overlay: 3;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  color: var(--tgui--text_color);
}
.tgui-56dbb42c1dbd5e2b {
  --tgui--large_title--line_height: 41px;
  --tgui--title1--line_height: 34px;
  --tgui--title2--line_height: 28px;
  --tgui--title3--line_height: 25px;
  --tgui--headline--line_height: 24px;
  --tgui--text--line_height: 22px;
  --tgui--subheadline1--line_height: 21px;
  --tgui--subheadline2--line_height: 20px;
  --tgui--caption1--line_height: 16px;
  --tgui--caption2--line_height: 13px;
}
.tgui-865b921add8ee075 {
  --tgui--bg_color: var(--tg-theme-bg-color, #212121);
  --tgui--text_color: var(--tg-theme-text-color, #fff);
  --tgui--hint_color: var(--tg-theme-hint-color, #aaa);
  --tgui--link_color: var(--tg-theme-link-color, #2990ff);
  --tgui--button_color: var(--tg-theme-button-color, #2990ff);
  --tgui--button_text_color: var(--tg-theme-button-text-color, #fff);
  --tgui--secondary_bg_color: var(--tg-theme-secondary-bg-color, #0f0f0f);
  --tgui--header_bg_color: var(--tg-theme-header-bg-color, #212121);
  --tgui--accent_text_color: var(--tg-theme-accent-text-color, #007aff);
  --tgui--section_bg_color: var(--tg-theme-section-bg-color, #212121);
  --tgui--section_header_text_color: var(
    --tg-theme-section-header-text-color,
    #aaa
  );
  --tgui--subtitle_text_color: var(--tg-theme-subtitle-text-color, #aaa);
  --tgui--destructive_text_color: var(
    --tg-theme-destructive-text-color,
    #e53935
  );
  --tgui--skeleton: hsla(0, 0%, 100%, 0.03);
  --tgui--divider: hsla(0, 0%, 100%, 0.05);
  --tgui--outline: hsla(0, 0%, 100%, 0.1);
  --tgui--surface_primary: hsla(0, 0%, 9%, 0.95);
  --tgui--tertiary_bg_color: #2a2a2a;
  --tgui--quartenary_bg_color: #2f2f2f;
  --tgui--segmented_control_active_bg: #2f2f2f;
  --tgui--card_bg_color: #242424;
  --tgui--secondary_hint_color: #78797e;
  --tgui--secondary_fill: rgba(41, 144, 255, 0.15);
  --tgui--green: #32e55e;
  --tgui--destructive_background: rgba(255, 35, 35, 0.02);
  --tgui--primary_code_highlight: #2990ff;
  --tgui--secondary_code_highlight: #e937ed;
  --tgui--tertiary_code_highlight: #5ae536;
  --tgui--plain_background: hsla(0, 0%, 100%, 0.08);
  --tgui--plain_foreground: hsla(0, 0%, 100%, 0.95);
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .tgui-6a12827a138e8827 {
    --tgui--border--width: 0.5px;
  }
}
@supports (padding-top: constant(safe-area-inset-bottom)) {
  .tgui-6a12827a138e8827 {
    --tgui--safe_area_inset_bottom: constant(safe-area-inset-bottom);
  }
}
@supports (padding-top: env(safe-area-inset-bottom)) {
  .tgui-6a12827a138e8827 {
    --tgui--safe_area_inset_bottom: env(safe-area-inset-bottom);
  }
}

