@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
.wallet-adapter-button {
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: DM Sans, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  line-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
}
.wallet-adapter-button-trigger {
  background-color: #512da8;
}
.wallet-adapter-button:not([disabled]):focus-visible {
  outline-color: #fff;
}
.wallet-adapter-button:not([disabled]):hover {
  background-color: #1a1f2e;
}
.wallet-adapter-button[disabled] {
  background: #404144;
  color: #999;
  cursor: not-allowed;
}
.wallet-adapter-button-end-icon,
.wallet-adapter-button-end-icon img,
.wallet-adapter-button-start-icon,
.wallet-adapter-button-start-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.wallet-adapter-button-end-icon {
  margin-left: 12px;
}
.wallet-adapter-button-start-icon {
  margin-right: 12px;
}
.wallet-adapter-collapse {
  width: 100%;
}
.wallet-adapter-dropdown {
  position: relative;
  display: inline-block;
}
.wallet-adapter-dropdown-list {
  position: absolute;
  z-index: 99;
  display: grid;
  grid-template-rows: 1fr;
  grid-row-gap: 10px;
  padding: 10px;
  top: 100%;
  right: 0;
  margin: 0;
  list-style: none;
  background: #2c2d30;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  font-family: DM Sans, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.wallet-adapter-dropdown-list-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}
.wallet-adapter-dropdown-list-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 20px;
  width: 100%;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  height: 37px;
  color: #fff;
}
.wallet-adapter-dropdown-list-item:not([disabled]):hover {
  background-color: #1a1f2e;
}
.wallet-adapter-modal-collapse-button svg {
  align-self: center;
  fill: #999;
}
.wallet-adapter-modal-collapse-button.wallet-adapter-modal-collapse-button-active
  svg {
  transform: rotate(180deg);
  transition: transform 0.15s ease-in;
}
.wallet-adapter-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.15s linear;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  overflow-y: auto;
}
.wallet-adapter-modal.wallet-adapter-modal-fade-in {
  opacity: 1;
}
.wallet-adapter-modal-button-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 12px;
  cursor: pointer;
  background: #1a1f2e;
  border: none;
  border-radius: 50%;
}
.wallet-adapter-modal-button-close:focus-visible {
  outline-color: #fff;
}
.wallet-adapter-modal-button-close svg {
  fill: #777;
  transition: fill 0.2s ease 0s;
}
.wallet-adapter-modal-button-close:hover svg {
  fill: #fff;
}
.wallet-adapter-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.wallet-adapter-modal-container {
  display: flex;
  margin: 3rem;
  min-height: calc(100vh - 6rem);
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .wallet-adapter-modal-container {
    margin: 1rem;
    min-height: calc(100vh - 2rem);
  }
}
.wallet-adapter-modal-wrapper {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 1050;
  max-width: 400px;
  border-radius: 10px;
  background: #10141f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  font-family: DM Sans, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  flex: 1;
}
.wallet-adapter-modal-wrapper .wallet-adapter-button {
  width: 100%;
}
.wallet-adapter-modal-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  margin: 0;
  padding: 64px 48px 48px;
  text-align: center;
  color: #fff;
}
@media (max-width: 374px) {
  .wallet-adapter-modal-title {
    font-size: 18px;
  }
}
.wallet-adapter-modal-list {
  margin: 0 0 12px;
  padding: 0;
  width: 100%;
  list-style: none;
}
.wallet-adapter-modal-list .wallet-adapter-button {
  font-weight: 400;
  border-radius: 0;
  font-size: 18px;
}
.wallet-adapter-modal-list .wallet-adapter-button-end-icon,
.wallet-adapter-modal-list .wallet-adapter-button-end-icon img,
.wallet-adapter-modal-list .wallet-adapter-button-start-icon,
.wallet-adapter-modal-list .wallet-adapter-button-start-icon img {
  width: 28px;
  height: 28px;
}
.wallet-adapter-modal-list .wallet-adapter-button span {
  margin-left: auto;
  font-size: 14px;
  opacity: 0.6;
}
.wallet-adapter-modal-list-more {
  cursor: pointer;
  border: none;
  padding: 12px 24px 24px 12px;
  align-self: flex-end;
  display: flex;
  align-items: center;
  background-color: transparent;
  color: #fff;
}
.wallet-adapter-modal-list-more svg {
  transition: all 0.1s ease;
  fill: #fff;
  margin-left: 0.5rem;
}
.wallet-adapter-modal-list-more-icon-rotate {
  transform: rotate(180deg);
}
.wallet-adapter-modal-middle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 24px;
  box-sizing: border-box;
}
.wallet-adapter-modal-middle-button {
  display: block;
  cursor: pointer;
  margin-top: 48px;
  width: 100%;
  background-color: #512da8;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  color: #fff;
}
@font-face {
  font-family: __whimsy_b7e343;
  src: url(../media/bc6d08a3abb7d919-s.p.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: __whimsy_Fallback_b7e343;
  src: local("Arial");
  ascent-override: 91.96%;
  descent-override: 21.01%;
  line-gap-override: 0%;
  size-adjust: 123.75%;
}
.__className_b7e343 {
  font-family: __whimsy_b7e343, __whimsy_Fallback_b7e343;
}
.__variable_b7e343 {
  --font-whimsy: "__whimsy_b7e343", "__whimsy_Fallback_b7e343";
}
@font-face {
  font-family: __Patrick_Hand_7b3ec9;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../media/3782aa48a2ea3076-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: __Patrick_Hand_7b3ec9;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../media/b17c9b6dae28e60b-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: __Patrick_Hand_7b3ec9;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../media/a1b489d74e9003ff-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: __Patrick_Hand_Fallback_7b3ec9;
  src: local("Arial");
  ascent-override: 128.12%;
  descent-override: 38.36%;
  line-gap-override: 0%;
  size-adjust: 81.33%;
}
.__className_7b3ec9 {
  font-family: __Patrick_Hand_7b3ec9, __Patrick_Hand_Fallback_7b3ec9;
  font-weight: 400;
  font-style: normal;
}
.__variable_7b3ec9 {
  --font-patrick-hand: "__Patrick_Hand_7b3ec9", "__Patrick_Hand_Fallback_7b3ec9";
}
@font-face {
  font-family: whimsy;
  src: url(../../../fonts/VNI-Whimsy.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: anime-acei-ciel;
  src: url(../../../fonts/000AnimeAceiCiel-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}
*,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(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: rgba(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: ;
}

/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/
*,
:after,
:before {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}
:after,
:before {
  --tw-content: "";
}
:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
}
fieldset,
legend {
  padding: 0;
}
menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
[role="button"],
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 376px) {
  .container {
    max-width: 376px;
  }
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 900px) {
  .container {
    max-width: 900px;
  }
}
@media (min-width: 1026px) {
  .container {
    max-width: 1026px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}
@media (min-width: 2500px) {
  .container {
    max-width: 2500px;
  }
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.fixed {
  position: fixed;
}
.\!absolute {
  position: absolute !important;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0,
.inset-\[0\] {
  inset: 0;
}
.inset-auto {
  inset: auto;
}
.inset-x-0 {
  left: 0;
  right: 0;
}
.inset-x-\[10\%\] {
  left: 10%;
  right: 10%;
}
.inset-x-\[12px\] {
  left: 12px;
  right: 12px;
}
.inset-x-\[8\%\] {
  left: 8%;
  right: 8%;
}
.\!right-\[16px\] {
  right: 16px !important;
}
.\!top-\[14\.6\%\] {
  top: 14.6% !important;
}
.\!top-\[16px\] {
  top: 16px !important;
}
.\!top-\[53\.8\%\] {
  top: 53.8% !important;
}
.\!top-\[55\.05\%\] {
  top: 55.05% !important;
}
.\!top-\[57\.5\%\] {
  top: 57.5% !important;
}
.\!top-\[59\%\] {
  top: 59% !important;
}
.\!top-\[62\.7\%\] {
  top: 62.7% !important;
}
.-bottom-\[22\%\] {
  bottom: -22%;
}
.-bottom-\[25\%\] {
  bottom: -25%;
}
.bottom-0 {
  bottom: 0;
}
.bottom-\[-15\%\] {
  bottom: -15%;
}
.bottom-\[-2\%\] {
  bottom: -2%;
}
.bottom-\[-3\%\] {
  bottom: -3%;
}
.bottom-\[-40px\] {
  bottom: -40px;
}
.bottom-\[-48\%\] {
  bottom: -48%;
}
.bottom-\[11\%\] {
  bottom: 11%;
}
.bottom-\[12px\] {
  bottom: 12px;
}
.bottom-\[15px\] {
  bottom: 15px;
}
.bottom-\[16px\] {
  bottom: 16px;
}
.bottom-\[2\%\] {
  bottom: 2%;
}
.bottom-\[25\%\] {
  bottom: 25%;
}
.bottom-\[30\%\] {
  bottom: 30%;
}
.bottom-\[32\%\] {
  bottom: 32%;
}
.bottom-\[32px\] {
  bottom: 32px;
}
.bottom-\[43\%\] {
  bottom: 43%;
}
.bottom-\[4px\] {
  bottom: 4px;
}
.bottom-\[60\%\] {
  bottom: 60%;
}
.bottom-\[91\%\] {
  bottom: 91%;
}
.bottom-\[93\%\] {
  bottom: 93%;
}
.left-0 {
  left: 0;
}
.left-\[-2\%\] {
  left: -2%;
}
.left-\[-20\%\] {
  left: -20%;
}
.left-\[-24\%\] {
  left: -24%;
}
.left-\[-3\%\] {
  left: -3%;
}
.left-\[0\] {
  left: 0;
}
.left-\[12\%\] {
  left: 12%;
}
.left-\[12px\] {
  left: 12px;
}
.left-\[15\%\] {
  left: 15%;
}
.left-\[18\.5\%\] {
  left: 18.5%;
}
.left-\[19\%\] {
  left: 19%;
}
.left-\[2\%\] {
  left: 2%;
}
.left-\[22\%\] {
  left: 22%;
}
.left-\[30\%\] {
  left: 30%;
}
.left-\[32px\] {
  left: 32px;
}
.left-\[34\.28\%\] {
  left: 34.28%;
}
.left-\[35\%\] {
  left: 35%;
}
.left-\[4\.5\%\] {
  left: 4.5%;
}
.left-\[42\%\] {
  left: 42%;
}
.left-\[50\%\] {
  left: 50%;
}
.left-\[51\.5\%\] {
  left: 51.5%;
}
.left-\[52\%\] {
  left: 52%;
}
.left-\[6\%\] {
  left: 6%;
}
.left-\[9\%\] {
  left: 9%;
}
.right-0 {
  right: 0;
}
.right-\[-12\%\] {
  right: -12%;
}
.right-\[-20\%\] {
  right: -20%;
}
.right-\[-23\%\] {
  right: -23%;
}
.right-\[-3\%\] {
  right: -3%;
}
.right-\[-37\%\] {
  right: -37%;
}
.right-\[-42\%\] {
  right: -42%;
}
.right-\[-6\%\] {
  right: -6%;
}
.right-\[-75\%\] {
  right: -75%;
}
.right-\[0\] {
  right: 0;
}
.right-\[10px\] {
  right: 10px;
}
.right-\[14px\] {
  right: 14px;
}
.right-\[15\%\] {
  right: 15%;
}
.right-\[15px\] {
  right: 15px;
}
.right-\[16px\] {
  right: 16px;
}
.right-\[17\%\] {
  right: 17%;
}
.right-\[20\%\] {
  right: 20%;
}
.right-\[33\%\] {
  right: 33%;
}
.right-\[38\%\] {
  right: 38%;
}
.right-\[40\%\] {
  right: 40%;
}
.right-\[47\%\] {
  right: 47%;
}
.right-\[49\%\] {
  right: 49%;
}
.right-\[4px\] {
  right: 4px;
}
.right-\[5\%\] {
  right: 5%;
}
.right-\[5px\] {
  right: 5px;
}
.right-\[65px\] {
  right: 65px;
}
.right-\[78px\] {
  right: 78px;
}
.top-0 {
  top: 0;
}
.top-\[-15\%\] {
  top: -15%;
}
.top-\[-3\%\] {
  top: -3%;
}
.top-\[-4\%\] {
  top: -4%;
}
.top-\[-50\%\] {
  top: -50%;
}
.top-\[0\] {
  top: 0;
}
.top-\[10\%\] {
  top: 10%;
}
.top-\[12px\] {
  top: 12px;
}
.top-\[13\%\] {
  top: 13%;
}
.top-\[15\%\] {
  top: 15%;
}
.top-\[22\%\] {
  top: 22%;
}
.top-\[27\%\] {
  top: 27%;
}
.top-\[30px\] {
  top: 30px;
}
.top-\[32px\] {
  top: 32px;
}
.top-\[40\%\] {
  top: 40%;
}
.top-\[4px\] {
  top: 4px;
}
.top-\[5\%\] {
  top: 5%;
}
.top-\[50\%\] {
  top: 50%;
}
.top-\[51\%\] {
  top: 51%;
}
.top-\[52\%\] {
  top: 52%;
}
.top-\[53\%\] {
  top: 53%;
}
.top-\[54\%\] {
  top: 54%;
}
.top-\[54\.103\%\] {
  top: 54.103%;
}
.top-\[55\%\] {
  top: 55%;
}
.top-\[57\.5\%\] {
  top: 57.5%;
}
.top-\[59\%\] {
  top: 59%;
}
.top-\[60\%\] {
  top: 60%;
}
.top-\[63\%\] {
  top: 63%;
}
.top-\[64\%\] {
  top: 64%;
}
.top-\[65\%\] {
  top: 65%;
}
.top-\[66\%\] {
  top: 66%;
}
.top-\[72\%\] {
  top: 72%;
}
.top-\[8\%\] {
  top: 8%;
}
.top-\[80\%\] {
  top: 80%;
}
.top-\[86\%\] {
  top: 86%;
}
.top-\[8px\] {
  top: 8px;
}
.top-\[98\%\] {
  top: 98%;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-\[-1\] {
  z-index: -1;
}
.z-\[1000\] {
  z-index: 1000;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[10\] {
  z-index: 10;
}
.z-\[1\] {
  z-index: 1;
}
.z-\[21\] {
  z-index: 21;
}
.z-\[22\] {
  z-index: 22;
}
.z-\[2\] {
  z-index: 2;
}
.z-\[33\] {
  z-index: 33;
}
.z-\[3\] {
  z-index: 3;
}
.z-\[4\] {
  z-index: 4;
}
.z-\[50\] {
  z-index: 50;
}
.z-\[51\] {
  z-index: 51;
}
.z-\[5\] {
  z-index: 5;
}
.z-\[9999\] {
  z-index: 9999;
}
.z-\[999\] {
  z-index: 999;
}
.z-\[99\] {
  z-index: 99;
}
.-m-\[10px\] {
  margin: -10px;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-\[10px\] {
  margin-left: 10px;
  margin-right: 10px;
}
.\!mt-0 {
  margin-top: 0 !important;
}
.mb-\[-1px\] {
  margin-bottom: -1px;
}
.mb-\[10px\] {
  margin-bottom: 10px;
}
.mb-\[30px\] {
  margin-bottom: 30px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-\[-1\%\] {
  margin-left: -1%;
}
.ml-\[-25\%\] {
  margin-left: -25%;
}
.ml-\[-26\%\] {
  margin-left: -26%;
}
.ml-\[10px\] {
  margin-left: 10px;
}
.ml-\[15\%\] {
  margin-left: 15%;
}
.ml-\[18px\] {
  margin-left: 18px;
}
.ml-\[24px\] {
  margin-left: 24px;
}
.ml-\[25\%\] {
  margin-left: 25%;
}
.ml-\[4px\] {
  margin-left: 4px;
}
.ml-\[50\%\] {
  margin-left: 50%;
}
.ml-\[8\%\] {
  margin-left: 8%;
}
.ml-\[8px\] {
  margin-left: 8px;
}
.ml-auto {
  margin-left: auto;
}
.mr-\[-20\%\] {
  margin-right: -20%;
}
.mr-\[14\%\] {
  margin-right: 14%;
}
.mr-\[14px\] {
  margin-right: 14px;
}
.mr-\[27\%\] {
  margin-right: 27%;
}
.mr-\[30\%\] {
  margin-right: 30%;
}
.mr-\[39\%\] {
  margin-right: 39%;
}
.mr-auto {
  margin-right: auto;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.mt-\[-10\%\] {
  margin-top: -10%;
}
.mt-\[-13\%\] {
  margin-top: -13%;
}
.mt-\[-14\%\] {
  margin-top: -14%;
}
.mt-\[-1px\] {
  margin-top: -1px;
}
.mt-\[-4\%\] {
  margin-top: -4%;
}
.mt-\[-9\%\] {
  margin-top: -9%;
}
.mt-\[1\.72\%\] {
  margin-top: 1.72%;
}
.mt-\[10\%\] {
  margin-top: 10%;
}
.mt-\[10px\] {
  margin-top: 10px;
}
.mt-\[11px\] {
  margin-top: 11px;
}
.mt-\[12px\] {
  margin-top: 12px;
}
.mt-\[15px\] {
  margin-top: 15px;
}
.mt-\[18\%\] {
  margin-top: 18%;
}
.mt-\[20px\] {
  margin-top: 20px;
}
.mt-\[21px\] {
  margin-top: 21px;
}
.mt-\[25\%\] {
  margin-top: 25%;
}
.mt-\[3\%\] {
  margin-top: 3%;
}
.mt-\[30\%\] {
  margin-top: 30%;
}
.mt-\[32px\] {
  margin-top: 32px;
}
.mt-\[33\%\] {
  margin-top: 33%;
}
.mt-\[5\%\] {
  margin-top: 5%;
}
.mt-\[60px\] {
  margin-top: 60px;
}
.mt-\[6px\] {
  margin-top: 6px;
}
.mt-\[7\%\] {
  margin-top: 7%;
}
.mt-\[7px\] {
  margin-top: 7px;
}
.mt-\[8px\] {
  margin-top: 8px;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.size-2 {
  width: 0.5rem;
  height: 0.5rem;
}
.size-3 {
  width: 0.75rem;
  height: 0.75rem;
}
.size-4 {
  width: 1rem;
  height: 1rem;
}
.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}
.size-\[14px\] {
  width: 14px;
  height: 14px;
}
.size-\[16px\] {
  width: 16px;
  height: 16px;
}
.size-\[20px\] {
  width: 20px;
  height: 20px;
}
.size-\[30px\] {
  width: 30px;
  height: 30px;
}
.size-\[38px\] {
  width: 38px;
  height: 38px;
}
.size-\[40px\] {
  width: 40px;
  height: 40px;
}
.size-\[46px\] {
  width: 46px;
  height: 46px;
}
.size-\[50px\] {
  width: 50px;
  height: 50px;
}
.size-\[54px\] {
  width: 54px;
  height: 54px;
}
.size-\[72px\] {
  width: 72px;
  height: 72px;
}
.\!h-\[50px\] {
  height: 50px !important;
}
.\!h-\[68px\] {
  height: 68px !important;
}
.h-0 {
  height: 0;
}
.h-3 {
  height: 0.75rem;
}
.h-\[100\%\] {
  height: 100%;
}
.h-\[100\.1\%\] {
  height: 100.1%;
}
.h-\[100\.5\%\] {
  height: 100.5%;
}
.h-\[100svh\] {
  height: 100svh;
}
.h-\[100vh\] {
  height: 100vh;
}
.h-\[120\%\] {
  height: 120%;
}
.h-\[140px\] {
  height: 140px;
}
.h-\[14px\] {
  height: 14px;
}
.h-\[16px\] {
  height: 16px;
}
.h-\[20\%\] {
  height: 20%;
}
.h-\[21\%\] {
  height: 21%;
}
.h-\[22\%\] {
  height: 22%;
}
.h-\[26px\] {
  height: 26px;
}
.h-\[32\%\] {
  height: 32%;
}
.h-\[32px\] {
  height: 32px;
}
.h-\[35\%\] {
  height: 35%;
}
.h-\[4\.5\%\] {
  height: 4.5%;
}
.h-\[400px\] {
  height: 400px;
}
.h-\[42\.5\%\] {
  height: 42.5%;
}
.h-\[4242px\] {
  height: 4242px;
}
.h-\[43\.8\%\] {
  height: 43.8%;
}
.h-\[46px\] {
  height: 46px;
}
.h-\[50\%\] {
  height: 50%;
}
.h-\[50px\] {
  height: 50px;
}
.h-\[51\%\] {
  height: 51%;
}
.h-\[58\%\] {
  height: 58%;
}
.h-\[60\%\] {
  height: 60%;
}
.h-\[65px\] {
  height: 65px;
}
.h-\[69\%\] {
  height: 69%;
}
.h-\[7\%\] {
  height: 7%;
}
.h-\[70px\] {
  height: 70px;
}
.h-\[72\%\] {
  height: 72%;
}
.h-\[75\%\] {
  height: 75%;
}
.h-\[75\.5\%\] {
  height: 75.5%;
}
.h-\[78\%\] {
  height: 78%;
}
.h-\[8\%\] {
  height: 8%;
}
.h-\[80\%\] {
  height: 80%;
}
.h-\[85\%\] {
  height: 85%;
}
.h-\[87\%\] {
  height: 87%;
}
.h-\[8px\] {
  height: 8px;
}
.h-\[95\%\] {
  height: 95%;
}
.h-\[97\%\] {
  height: 97%;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.max-h-\[100\%\] {
  max-height: 100%;
}
.max-h-\[calc\(100\%-60px\)\] {
  max-height: calc(100% - 60px);
}
.max-h-\[calc\(100vh-56px\)\] {
  max-height: calc(100vh - 56px);
}
.\!min-h-svh {
  min-height: 100svh !important;
}
.min-h-\[35px\] {
  min-height: 35px;
}
.min-h-\[850px\] {
  min-height: 850px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0 {
  width: 0;
}
.w-\[100\%\] {
  width: 100%;
}
.w-\[100vw\] {
  width: 100vw;
}
.w-\[120px\] {
  width: 120px;
}
.w-\[122\%\] {
  width: 122%;
}
.w-\[13\%\] {
  width: 13%;
}
.w-\[1400px\] {
  width: 1400px;
}
.w-\[142\%\] {
  width: 142%;
}
.w-\[148px\] {
  width: 148px;
}
.w-\[14px\] {
  width: 14px;
}
.w-\[15\%\] {
  width: 15%;
}
.w-\[150px\] {
  width: 150px;
}
.w-\[16\%\] {
  width: 16%;
}
.w-\[16px\] {
  width: 16px;
}
.w-\[17\%\] {
  width: 17%;
}
.w-\[18\%\] {
  width: 18%;
}
.w-\[1800px\] {
  width: 1800px;
}
.w-\[20\%\] {
  width: 20%;
}
.w-\[21\%\] {
  width: 21%;
}
.w-\[218px\] {
  width: 218px;
}
.w-\[23\%\] {
  width: 23%;
}
.w-\[25\%\] {
  width: 25%;
}
.w-\[26\%\] {
  width: 26%;
}
.w-\[28\%\] {
  width: 28%;
}
.w-\[29\%\] {
  width: 29%;
}
.w-\[30\%\] {
  width: 30%;
}
.w-\[30px\] {
  width: 30px;
}
.w-\[35\%\] {
  width: 35%;
}
.w-\[36\%\] {
  width: 36%;
}
.w-\[38\%\] {
  width: 38%;
}
.w-\[40\%\] {
  width: 40%;
}
.w-\[44\%\] {
  width: 44%;
}
.w-\[440px\] {
  width: 440px;
}
.w-\[44px\] {
  width: 44px;
}
.w-\[45\%\] {
  width: 45%;
}
.w-\[450px\] {
  width: 450px;
}
.w-\[45px\] {
  width: 45px;
}
.w-\[48\%\] {
  width: 48%;
}
.w-\[4px\] {
  width: 4px;
}
.w-\[5\%\] {
  width: 5%;
}
.w-\[50\%\] {
  width: 50%;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[550px\] {
  width: 550px;
}
.w-\[58\%\] {
  width: 58%;
}
.w-\[60\%\] {
  width: 60%;
}
.w-\[600px\] {
  width: 600px;
}
.w-\[64\%\] {
  width: 64%;
}
.w-\[650px\] {
  width: 650px;
}
.w-\[68\%\] {
  width: 68%;
}
.w-\[69\%\] {
  width: 69%;
}
.w-\[70\%\] {
  width: 70%;
}
.w-\[70vw\] {
  width: 70vw;
}
.w-\[73\%\] {
  width: 73%;
}
.w-\[75\%\] {
  width: 75%;
}
.w-\[77\%\] {
  width: 77%;
}
.w-\[79\%\] {
  width: 79%;
}
.w-\[80\%\] {
  width: 80%;
}
.w-\[80px\] {
  width: 80px;
}
.w-\[82\.8\%\] {
  width: 82.8%;
}
.w-\[83\%\] {
  width: 83%;
}
.w-\[8px\] {
  width: 8px;
}
.w-\[90\%\] {
  width: 90%;
}
.w-\[95\%\] {
  width: 95%;
}
.w-\[95px\] {
  width: 95px;
}
.w-\[98\%\] {
  width: 98%;
}
.w-\[99\%\] {
  width: 99%;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.min-w-\[1350px\] {
  min-width: 1350px;
}
.min-w-\[203px\] {
  min-width: 203px;
}
.min-w-\[463px\] {
  min-width: 463px;
}
.max-w-\[100\%\] {
  max-width: 100%;
}
.max-w-\[409px\] {
  max-width: 409px;
}
.max-w-\[501px\] {
  max-width: 501px;
}
.max-w-\[502px\] {
  max-width: 502px;
}
.max-w-\[512px\] {
  max-width: 512px;
}
.max-w-\[525px\] {
  max-width: 525px;
}
.max-w-\[638px\] {
  max-width: 638px;
}
.max-w-\[658px\] {
  max-width: 658px;
}
.max-w-\[70\%\] {
  max-width: 70%;
}
.max-w-\[700px\] {
  max-width: 700px;
}
.max-w-\[80\%\] {
  max-width: 80%;
}
.max-w-\[974\.7px\] {
  max-width: 974.7px;
}
.max-w-\[calc\(100vw-30px\)\] {
  max-width: calc(100vw - 30px);
}
.flex-1 {
  flex: 1 1 0%;
}
.-translate-x-\[50\%\] {
  --tw-translate-x: -50%;
}
.-translate-x-\[50\%\],
.-translate-x-\[54\%\] {
  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-x-\[54\%\] {
  --tw-translate-x: -54%;
}
.-translate-y-\[100\%\] {
  --tw-translate-y: -100%;
}
.-translate-y-\[100\%\],
.-translate-y-\[50\%\] {
  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-\[50\%\] {
  --tw-translate-y: -50%;
}
.rotate-\[-0\.873deg\] {
  --tw-rotate: -0.873deg;
}
.rotate-\[-0\.873deg\],
.rotate-\[-1\.5deg\] {
  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));
}
.rotate-\[-1\.5deg\] {
  --tw-rotate: -1.5deg;
}
.rotate-\[-28deg\] {
  --tw-rotate: -28deg;
  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 ping {
  75%,
  to {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.grid-cols-\[2\.5fr_2fr\] {
  grid-template-columns: 2.5fr 2fr;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-\[14px\] {
  gap: 14px;
}
.gap-\[18px\] {
  gap: 18px;
}
.gap-\[40px\] {
  gap: 40px;
}
.gap-\[5px\] {
  gap: 5px;
}
.gap-\[8px\] {
  gap: 8px;
}
.gap-x-\[12px\] {
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.gap-x-\[8px\] {
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.gap-y-\[28px\] {
  row-gap: 28px;
}
.overflow-auto {
  overflow: auto;
}
.\!overflow-hidden {
  overflow: hidden !important;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-line {
  white-space: pre-line;
}
.text-wrap {
  text-wrap: wrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-\[20px\] {
  border-radius: 20px;
}
.rounded-\[24px\] {
  border-radius: 24px;
}
.rounded-\[4px\] {
  border-radius: 4px;
}
.rounded-\[5px\] {
  border-radius: 5px;
}
.rounded-\[6px\] {
  border-radius: 6px;
}
.rounded-\[8px\] {
  border-radius: 8px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-tl-lg {
  border-top-left-radius: 0.5rem;
}
.rounded-tr-lg {
  border-top-right-radius: 0.5rem;
}
.border-\[1\.5px\] {
  border-width: 1.5px;
}
.border-\[2px\] {
  border-width: 2px;
}
.border-b-\[8px\] {
  border-bottom-width: 8px;
}
.border-l-\[12px\] {
  border-left-width: 12px;
}
.border-r-\[12px\] {
  border-right-width: 12px;
}
.border-t-\[8px\] {
  border-top-width: 8px;
}
.border-solid {
  border-style: solid;
}
.\!border-none {
  border-style: none !important;
}
.border-\[\#866247\] {
  --tw-border-opacity: 1;
  border-color: rgb(134 98 71 / var(--tw-border-opacity, 1));
}
.border-b-transparent {
  border-bottom-color: transparent;
}
.border-l-white {
  --tw-border-opacity: 1;
  border-left-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-r-white {
  --tw-border-opacity: 1;
  border-right-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-t-transparent {
  border-top-color: transparent;
}
.\!bg-\[\#C24E16\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(194 78 22 / var(--tw-bg-opacity, 1)) !important;
}
.bg-\[\#191614\] {
  --tw-bg-opacity: 1;
  background-color: rgb(25 22 20 / var(--tw-bg-opacity, 1));
}
.bg-\[\#564F41\] {
  --tw-bg-opacity: 1;
  background-color: rgb(86 79 65 / var(--tw-bg-opacity, 1));
}
.bg-\[\#866247\] {
  --tw-bg-opacity: 1;
  background-color: rgb(134 98 71 / var(--tw-bg-opacity, 1));
}
.bg-\[\#AF5B20\] {
  --tw-bg-opacity: 1;
  background-color: rgb(175 91 32 / var(--tw-bg-opacity, 1));
}
.bg-\[\#D14F07\] {
  --tw-bg-opacity: 1;
  background-color: rgb(209 79 7 / var(--tw-bg-opacity, 1));
}
.bg-\[\#D3733C\] {
  --tw-bg-opacity: 1;
  background-color: rgb(211 115 60 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E05611\] {
  --tw-bg-opacity: 1;
  background-color: rgb(224 86 17 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E3E3E3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(227 227 227 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E8E3D1\] {
  --tw-bg-opacity: 1;
  background-color: rgb(232 227 209 / var(--tw-bg-opacity, 1));
}
.bg-\[\#EF9300\] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 147 0 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F2600F\] {
  --tw-bg-opacity: 1;
  background-color: rgb(242 96 15 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FBC052\] {
  --tw-bg-opacity: 1;
  background-color: rgb(251 192 82 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FF471F\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 71 31 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFA600\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 166 0 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFE9D7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 233 215 / var(--tw-bg-opacity, 1));
}
.bg-\[rgba\(209\2c 79\2c 7\2c 0\.4\)\] {
  background-color: rgba(209, 79, 7, 0.4);
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-\[url\(\'\.\.\/\.\.\/public\/images\/bg-main\.png\'\)\] {
  background-image: url(../media/bg-main.e1bbcaed.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/act-1\.1\.png\'\)\] {
  background-image: url(../media/act-1.1.d900e1b4.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/act-1\.2\.png\'\)\] {
  background-image: url(../media/act-1.2.5faa082b.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/act-1\.3\.png\'\)\] {
  background-image: url(../media/act-1.3.1972b14c.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/bg-act-2-sm\.png\'\)\] {
  background-image: url(../media/bg-act-2-sm.b367d34d.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/bg-act-2\.png\'\)\] {
  background-image: url(../media/bg-act-2.9d34e2c6.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/bg-history-bottom\.svg\'\)\] {
  background-image: url(../media/bg-history-bottom.6411d755.svg);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/bg-history-top\.svg\'\)\] {
  background-image: url(../media/bg-history-top.66283d59.svg);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/mobile-act-1\.1\.png\'\)\] {
  background-image: url(../media/mobile-act-1.1.28e57a52.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/mobile-act-1\.2\.png\'\)\] {
  background-image: url(../media/mobile-act-1.2.117c01c8.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/mobile-act-1\.3\.png\'\)\] {
  background-image: url(../media/mobile-act-1.3.b09a2ff6.png);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/mobile-input-left\.svg\'\)\] {
  background-image: url(../media/mobile-input-left.2fd3cc29.svg);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/lords\/mobile-input-right\.svg\'\)\] {
  background-image: url(../media/mobile-input-right.0fcc36e0.svg);
}
.bg-\[url\(\'\.\.\/\.\.\/public\/svg\/airdrop\/train-mobile\.png\'\)\] {
  background-image: url(../media/train-mobile.2a4d45e9.png);
}
.bg-\[length\:85\%_auto\] {
  background-size: 85% auto;
}
.bg-cover {
  background-size: cover;
}
.bg-bottom {
  background-position: bottom;
}
.bg-center {
  background-position: 50%;
}
.bg-left {
  background-position: 0;
}
.bg-right {
  background-position: 100%;
}
.bg-right-bottom {
  background-position: 100% 100%;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.fill-white {
  fill: #fff;
}
.p-1 {
  padding: 0.25rem;
}
.p-\[12px\] {
  padding: 12px;
}
.p-\[1px\] {
  padding: 1px;
}
.p-\[2px\] {
  padding: 2px;
}
.p-\[3px\] {
  padding: 3px;
}
.p-\[4px\] {
  padding: 4px;
}
.p-\[8px\] {
  padding: 8px;
}
.\!py-\[10px\] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.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;
}
.px-\[16px\] {
  padding-left: 16px;
  padding-right: 16px;
}
.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[32px\] {
  padding-left: 32px;
  padding-right: 32px;
}
.px-\[42px\] {
  padding-left: 42px;
  padding-right: 42px;
}
.px-\[60px\] {
  padding-left: 60px;
  padding-right: 60px;
}
.px-\[6px\] {
  padding-left: 6px;
  padding-right: 6px;
}
.px-\[8px\] {
  padding-left: 8px;
  padding-right: 8px;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[17px\] {
  padding-top: 17px;
  padding-bottom: 17px;
}
.py-\[3px\] {
  padding-top: 3px;
  padding-bottom: 3px;
}
.py-\[4px\] {
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-\[5px\] {
  padding-top: 5px;
  padding-bottom: 5px;
}
.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-\[2px\] {
  padding-bottom: 2px;
}
.pb-\[34\.5px\] {
  padding-bottom: 34.5px;
}
.pb-\[44px\] {
  padding-bottom: 44px;
}
.pb-\[4px\] {
  padding-bottom: 4px;
}
.pl-\[36px\] {
  padding-left: 36px;
}
.pr-\[2px\] {
  padding-right: 2px;
}
.pr-\[30px\] {
  padding-right: 30px;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-\[10px\] {
  padding-top: 10px;
}
.pt-\[12px\] {
  padding-top: 12px;
}
.pt-\[30px\] {
  padding-top: 30px;
}
.text-center {
  text-align: center;
}
.align-top {
  vertical-align: top;
}
.font-\[anime-acei-ciel\] {
  font-family: anime-acei-ciel;
}
.font-\[whimsy\] {
  font-family: whimsy;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[13px\] {
  font-size: 13px;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[15px\] {
  font-size: 15px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[20px\] {
  font-size: 20px;
}
.text-\[28px\] {
  font-size: 28px;
}
.text-\[30px\] {
  font-size: 30px;
}
.text-\[80px\] {
  font-size: 80px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.uppercase {
  text-transform: uppercase;
}
.leading-\[18px\] {
  line-height: 18px;
}
.leading-\[19px\] {
  line-height: 19px;
}
.leading-\[20px\] {
  line-height: 20px;
}
.leading-\[21px\] {
  line-height: 21px;
}
.leading-\[24px\] {
  line-height: 24px;
}
.leading-\[28px\] {
  line-height: 28px;
}
.leading-\[30px\] {
  line-height: 30px;
}
.leading-\[41px\] {
  line-height: 41px;
}
.leading-\[92\.651px\] {
  line-height: 92.651px;
}
.\!text-\[\#44362C\] {
  --tw-text-opacity: 1 !important;
  color: rgb(68 54 44 / var(--tw-text-opacity, 1)) !important;
}
.\!text-\[\#D14F07\] {
  --tw-text-opacity: 1 !important;
  color: rgb(209 79 7 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#44362C\] {
  --tw-text-opacity: 1;
  color: rgb(68 54 44 / var(--tw-text-opacity, 1));
}
.text-\[\#451E0F\] {
  --tw-text-opacity: 1;
  color: rgb(69 30 15 / var(--tw-text-opacity, 1));
}
.text-\[\#7C7979\] {
  --tw-text-opacity: 1;
  color: rgb(124 121 121 / var(--tw-text-opacity, 1));
}
.text-\[\#D14F07\] {
  --tw-text-opacity: 1;
  color: rgb(209 79 7 / var(--tw-text-opacity, 1));
}
.text-\[\#DCD4BD\] {
  --tw-text-opacity: 1;
  color: rgb(220 212 189 / var(--tw-text-opacity, 1));
}
.text-\[\#DEC5B6\] {
  --tw-text-opacity: 1;
  color: rgb(222 197 182 / var(--tw-text-opacity, 1));
}
.text-\[\#FFCD56\] {
  --tw-text-opacity: 1;
  color: rgb(255 205 86 / var(--tw-text-opacity, 1));
}
.text-\[white\] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.\!opacity-100 {
  opacity: 1 !important;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-90 {
  opacity: 0.9;
}
.opacity-\[30\%\] {
  opacity: 30%;
}
.opacity-\[70\] {
  opacity: 1;
}
.shadow-\[0px_4px_0px_0px_rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
  --tw-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
  --tw-shadow-colored: 0px 4px 0px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_4px_8px_0px_rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
  --tw-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  --tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_6px_6px_0px_rgba\(0\2c 0\2c 0\2c 0\.15\)\] {
  --tw-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.15);
  --tw-shadow-colored: 0px 6px 6px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.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-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.duration-200 {
  transition-duration: 0.2s;
}
.duration-300 {
  transition-duration: 0.3s;
}
.duration-500 {
  transition-duration: 0.5s;
}
.duration-\[200\] {
  transition-duration: 200;
}
@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;
  }
}
:root {
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}
html {
  scroll-behavior: smooth;
}
body {
  color: #fff;
  background: #ffefd3;
  font-family: Patrick Hand;
  font-weight: 400;
}
@keyframes strike {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.strike {
  --thickness: 1px;
  --strike: 0;
  background: linear-gradient(90deg, transparent, #fff 0) no-repeat 100% /
    calc(var(--strike) * 100%) var(--thickness);
  transition: background-size 0.3s ease;
}
@media screen and (min-width: 640px) {
  .strike {
    --thickness: 2px;
  }
}
.strike-active {
  --strike: 1;
  background-position-x: left;
  background-position-y: 55%;
}
.loader {
  display: flex;
  align-items: center;
}
.loader .stroke {
  display: block;
  position: relative;
  background: #da9f6f;
  height: 100%;
  border-radius: 50px;
  animation: animate 1.2s linear infinite;
}
@keyframes animate {
  50% {
    height: 20%;
  }
  to {
    height: 100%;
  }
}
.stroke:first-child {
  animation-delay: 0s;
}
.stroke:nth-child(2) {
  animation-delay: 0.3s;
}
.stroke:nth-child(3) {
  animation-delay: 0.6s;
}
.stroke:nth-child(4) {
  animation-delay: 0.9s;
}
.stroke:nth-child(5) {
  animation-delay: 0.6s;
}
.stroke:nth-child(6) {
  animation-delay: 0.3s;
}
.stroke:nth-child(7) {
  animation-delay: 0s;
}
.stroke:nth-child(8) {
  animation-delay: 0.3s;
}
.stroke:nth-child(9) {
  animation-delay: 0.6s;
}
.stroke:nth-child(10) {
  animation-delay: 0.9s;
}
.stroke:nth-child(11) {
  animation-delay: 0s;
}
.stroke:nth-child(12) {
  animation-delay: 0.3s;
}
.stroke:nth-child(13) {
  animation-delay: 0.6s;
}
.stroke:nth-child(14) {
  animation-delay: 0.9s;
}
.stroke:nth-child(15) {
  animation-delay: 0.3s;
}
.stroke:nth-child(16) {
  animation-delay: 0s;
}
.stroke:nth-child(17) {
  animation-delay: 0.6s;
}
.stroke:nth-child(18) {
  animation-delay: 0.9s;
}
.stroke:nth-child(19) {
  animation-delay: 0.3s;
}
.stroke:nth-child(20),
.stroke:nth-child(21) {
  animation-delay: 0.6s;
}
.stroke:nth-child(22) {
  animation-delay: 0s;
}
.content-box {
  height: auto;
  overflow: hidden;
  background: #fff;
  clip-path: polygon(
    1% 2%,
    3.5% 0.1%,
    8.9% 2.7%,
    16.2% 1.2%,
    19.7% 0.8%,
    24.7% 2%,
    31.2% 0,
    35.9% 2.3%,
    40.6% 0.5%,
    47.1% 1.8%,
    49.9% 1%,
    53.8% 2.5%,
    62.2% 0.4%,
    67.3% 1.2%,
    70.3% 0.3%,
    75.8% 1.4%,
    78.5% 1.7%,
    84% 2.6%,
    91.1% 0.5%,
    93.6% 2.4%,
    97.3% 0.3%,
    98.9% 6%,
    98.1% 11.4%,
    98.6% 15.5%,
    97.3% 17.8%,
    97.7% 27.4%,
    98.3% 28.5%,
    99.7% 34.1%,
    98.8% 41.9%,
    98.3% 45.7%,
    98.4% 50.9%,
    98.7% 57.4%,
    99.6% 60.4%,
    99.4% 66.6%,
    99.2% 69.5%,
    97.4% 77.1%,
    98.1% 82.3%,
    99.9% 83.5%,
    98.2% 91.5%,
    99.3% 95.3%,
    98% 98.6%,
    93.6% 97.4%,
    90.3% 98.3%,
    86.8% 98.3%,
    78.6% 98.5%,
    76.4% 99.2%,
    69.7% 99.8%,
    64.2% 99.3%,
    61.8% 99.2%,
    57.2% 98.1%,
    48.7% 98.3%,
    46.8% 99%,
    39.6% 98.9%,
    33.8% 97.3%,
    28.2% 99.4%,
    27% 98.3%,
    22.1% 98.6%,
    13.1% 97.1%,
    8.7% 99.3%,
    2.7% 97.4%,
    2% 98.2%,
    2.1% 94.3%,
    0.7% 90.5%,
    0.9% 86.3%,
    2.2% 78.2%,
    0.4% 76.7%,
    1.2% 72.1%,
    2% 64%,
    1.4% 59.8%,
    0.4% 57.3%,
    0.3% 49.1%,
    2.9% 44.7%,
    1.9% 41.3%,
    0.8% 35.7%,
    2.9% 31.3%,
    0.8% 24.9%,
    2.7% 20.5%,
    0.8% 17.4%,
    2.5% 8.6%,
    1.1% 5.5%
  );
}
.init-page {
  margin: auto;
  border-bottom: 20px solid #ffe9d7;
  border-top: 20px solid #ffe9d7;
  border-radius: 50%;
  border-color: #f2600f #ffe9d7;
  border-style: solid;
  border-width: 20px;
  width: 80px;
  height: 80px;
  animation: spinner 2s linear infinite;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.recharts-pie * {
  outline: none !important;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dot-loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #050406bd 90%, #0000);
  background: var(--_g) 0 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100% / 3) 50%;
  animation: l3 1s linear infinite;
}
@keyframes l3 {
  20% {
    background-position: 0 0, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0 100%, 50% 0, 100% 50%;
  }
  60% {
    background-position: 0 50%, 50% 100%, 100% 0;
  }
  80% {
    background-position: 0 50%, 50% 50%, 100% 100%;
  }
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
}
.hover\:scale-105:hover,
.hover\:scale-110:hover {
  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));
}
.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
}
.hover\:scale-125:hover {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
}
.hover\:scale-125:hover,
.hover\:scale-\[120\%\]:hover {
  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));
}
.hover\:scale-\[120\%\]:hover {
  --tw-scale-x: 120%;
  --tw-scale-y: 120%;
}
.hover\:border-none:hover {
  border-style: none;
}
.hover\:bg-\[\#DCD4BD\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 212 189 / var(--tw-bg-opacity, 1));
}
.hover\:text-\[\#FFCD56\]:hover {
  --tw-text-opacity: 1;
  color: rgb(255 205 86 / var(--tw-text-opacity, 1));
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:opacity-80:hover {
  opacity: 0.8;
}
.focus\:border-none:focus {
  border-style: none;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.enabled\:hover\:scale-110:hover:enabled {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.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));
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:bg-\[\#594B41\]:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(89 75 65 / var(--tw-bg-opacity, 1));
}
.disabled\:bg-transparent:disabled {
  background-color: transparent;
}
.disabled\:opacity-5:disabled {
  opacity: 0.05;
}
.disabled\:opacity-\[0\.3\]:disabled {
  opacity: 0.3;
}
.disabled\:opacity-\[0\.7\]:disabled {
  opacity: 0.7;
}
.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group:disabled .group-disabled\:bg-\[\#BDB1A7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(189 177 167 / var(--tw-bg-opacity, 1));
}
.group:disabled .group-disabled\:text-\[\#00000080\] {
  color: #00000080;
}
@media (min-width: 330px) {
  .min-\[330px\]\:size-\[15px\] {
    width: 15px;
    height: 15px;
  }
  .min-\[330px\]\:text-\[14px\] {
    font-size: 14px;
  }
}
@media (min-width: 390px) {
  .min-\[390px\]\:mt-2 {
    margin-top: 0.5rem;
  }
  .min-\[390px\]\:text-\[32px\] {
    font-size: 32px;
  }
  .min-\[390px\]\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .min-\[390px\]\:leading-\[24px\] {
    line-height: 24px;
  }
  .min-\[390px\]\:leading-\[32px\] {
    line-height: 32px;
  }
}
@media (min-width: 500px) {
  .min-\[500px\]\:mt-\[10\%\] {
    margin-top: 10%;
  }
}
@media (min-width: 768px) {
  .md\:bottom-\[48px\] {
    bottom: 48px;
  }
  .md\:bottom-\[56px\] {
    bottom: 56px;
  }
  .md\:bottom-\[60\%\] {
    bottom: 60%;
  }
  .md\:right-\[-9\%\] {
    right: -9%;
  }
  .md\:right-\[38px\] {
    right: 38px;
  }
  .md\:right-\[88px\] {
    right: 88px;
  }
  .md\:top-\[49\%\] {
    top: 49%;
  }
  .md\:top-\[8\%\] {
    top: 8%;
  }
  .md\:mx-\[18px\] {
    margin-left: 18px;
    margin-right: 18px;
  }
  .md\:mb-\[0px\] {
    margin-bottom: 0;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mt-\[12px\] {
    margin-top: 12px;
  }
  .md\:mt-\[18px\] {
    margin-top: 18px;
  }
  .md\:mt-\[30px\] {
    margin-top: 30px;
  }
  .md\:mt-\[35px\] {
    margin-top: 35px;
  }
  .md\:mt-\[5px\] {
    margin-top: 5px;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:size-5 {
    width: 1.25rem;
    height: 1.25rem;
  }
  .md\:size-6 {
    width: 1.5rem;
  }
  .md\:h-6,
  .md\:size-6 {
    height: 1.5rem;
  }
  .md\:h-\[32px\] {
    height: 32px;
  }
  .md\:h-\[48px\] {
    height: 48px;
  }
  .md\:h-\[69\%\] {
    height: 69%;
  }
  .md\:h-\[70\%\] {
    height: 70%;
  }
  .md\:h-\[72px\] {
    height: 72px;
  }
  .md\:h-\[81\%\] {
    height: 81%;
  }
  .md\:h-full {
    height: 100%;
  }
  .md\:w-\[195px\] {
    width: 195px;
  }
  .md\:w-\[32px\] {
    width: 32px;
  }
  .md\:w-\[4px\] {
    width: 4px;
  }
  .md\:w-\[65\%\] {
    width: 65%;
  }
  .md\:w-\[65px\] {
    width: 65px;
  }
  .md\:w-\[80\%\] {
    width: 80%;
  }
  .md\:w-\[90\%\] {
    width: 90%;
  }
  .md\:max-w-\[450px\] {
    max-width: 450px;
  }
  .md\:max-w-\[600px\] {
    max-width: 600px;
  }
  .md\:gap-\[10px\] {
    gap: 10px;
  }
  .md\:gap-\[18px\] {
    gap: 18px;
  }
  .md\:gap-\[20px\] {
    gap: 20px;
  }
  .md\:bg-\[url\(\'\.\.\/\.\.\/public\/lords\/bg-act-2-md\.png\'\)\] {
    background-image: url(../media/bg-act-2-md.6561845b.png);
  }
  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .md\:px-\[18px\] {
    padding-left: 18px;
    padding-right: 18px;
  }
  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .md\:pb-\[40px\] {
    padding-bottom: 40px;
  }
  .md\:pb-\[72px\] {
    padding-bottom: 72px;
  }
  .md\:pr-\[20\%\] {
    padding-right: 20%;
  }
  .md\:pt-\[20px\] {
    padding-top: 20px;
  }
  .md\:pt-\[38px\] {
    padding-top: 38px;
  }
  .md\:pt-\[71px\] {
    padding-top: 71px;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-\[12px\] {
    font-size: 12px;
  }
  .md\:text-\[14px\] {
    font-size: 14px;
  }
  .md\:text-\[18px\] {
    font-size: 18px;
  }
  .md\:text-\[24px\] {
    font-size: 24px;
  }
  .md\:text-\[28px\] {
    font-size: 28px;
  }
  .md\:text-\[40px\] {
    font-size: 40px;
  }
  .md\:leading-\[40px\] {
    line-height: 40px;
  }
}
@media (min-width: 819px) {
  .min-\[819px\]\:max-w-\[800px\] {
    max-width: 800px;
  }
  .min-\[819px\]\:text-\[22px\] {
    font-size: 22px;
  }
  .min-\[819px\]\:leading-\[34px\] {
    line-height: 34px;
  }
}
@media (min-width: 900px) {
  .mlg\:top-\[8\%\] {
    top: 8%;
  }
  .mlg\:size-8 {
    width: 2rem;
    height: 2rem;
  }
  .mlg\:h-8 {
    height: 2rem;
  }
  .mlg\:w-\[5px\] {
    width: 5px;
  }
  .mlg\:gap-\[20px\] {
    gap: 20px;
  }
  .mlg\:px-\[18px\] {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (min-width: 1026px) {
  .lg\:bottom-\[16px\] {
    bottom: 16px;
  }
  .lg\:bottom-\[92\%\] {
    bottom: 92%;
  }
  .lg\:left-\[15\%\] {
    left: 15%;
  }
  .lg\:right-\[-13\%\] {
    right: -13%;
  }
  .lg\:right-\[16px\] {
    right: 16px;
  }
  .lg\:top-\[9\%\] {
    top: 9%;
  }
  .lg\:mb-\[0px\] {
    margin-bottom: 0;
  }
  .lg\:mr-\[40px\] {
    margin-right: 40px;
  }
  .lg\:mt-\[32px\] {
    margin-top: 32px;
  }
  .lg\:mt-\[5px\] {
    margin-top: 5px;
  }
  .lg\:mt-\[75px\] {
    margin-top: 75px;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:size-6 {
    width: 1.5rem;
    height: 1.5rem;
  }
  .lg\:size-\[30px\] {
    width: 30px;
    height: 30px;
  }
  .lg\:h-6 {
    height: 1.5rem;
  }
  .lg\:h-\[30px\] {
    height: 30px;
  }
  .lg\:h-\[32px\] {
    height: 32px;
  }
  .lg\:h-\[74\%\] {
    height: 74%;
  }
  .lg\:h-\[79\.5\%\] {
    height: 79.5%;
  }
  .lg\:max-h-\[870px\] {
    max-height: 870px;
  }
  .lg\:w-\[165px\] {
    width: 165px;
  }
  .lg\:w-\[32px\] {
    width: 32px;
  }
  .lg\:w-\[48px\] {
    width: 48px;
  }
  .lg\:w-\[4px\] {
    width: 4px;
  }
  .lg\:w-\[50\%\] {
    width: 50%;
  }
  .lg\:w-\[620px\] {
    width: 620px;
  }
  .lg\:max-w-\[692px\] {
    max-width: 692px;
  }
  .lg\:max-w-\[960px\] {
    max-width: 960px;
  }
  .lg\:justify-start {
    justify-content: flex-start;
  }
  .lg\:gap-\[10px\] {
    gap: 10px;
  }
  .lg\:gap-\[24px\] {
    gap: 24px;
  }
  .lg\:gap-\[40px\] {
    gap: 40px;
  }
  .lg\:gap-x-\[20px\] {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:px-\[17px\] {
    padding-left: 17px;
    padding-right: 17px;
  }
  .lg\:px-\[24px\] {
    padding-left: 24px;
    padding-right: 24px;
  }
  .lg\:px-\[48px\] {
    padding-left: 48px;
    padding-right: 48px;
  }
  .lg\:py-\[48px\] {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .lg\:pb-\[20px\] {
    padding-bottom: 20px;
  }
  .lg\:pt-\[10px\] {
    padding-top: 10px;
  }
  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-\[15px\] {
    font-size: 15px;
  }
  .lg\:text-\[16px\] {
    font-size: 16px;
  }
  .lg\:text-\[20px\] {
    font-size: 20px;
  }
  .lg\:text-\[24px\] {
    font-size: 24px;
  }
  .lg\:text-\[30px\] {
    font-size: 30px;
  }
  .lg\:text-\[35px\] {
    font-size: 35px;
  }
  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .lg\:leading-\[20px\] {
    line-height: 20px;
  }
  .lg\:leading-\[40px\] {
    line-height: 40px;
  }
}
@media (min-width: 1280px) {
  .xl\:left-\[20\%\] {
    left: 20%;
  }
  .xl\:top-\[49\%\] {
    top: 49%;
  }
  .xl\:mt-3 {
    margin-top: 0.75rem;
  }
  .xl\:mt-\[20px\] {
    margin-top: 20px;
  }
  .xl\:size-\[30px\] {
    width: 30px;
    height: 30px;
  }
  .xl\:max-h-\[100\%\] {
    max-height: 100%;
  }
  .xl\:max-h-\[1000px\] {
    max-height: 1000px;
  }
  .xl\:max-w-\[700px\] {
    max-width: 700px;
  }
  .xl\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .xl\:text-\[16px\] {
    font-size: 16px;
  }
  .xl\:text-\[18px\] {
    font-size: 18px;
  }
  .xl\:text-\[22px\] {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .min-\[1300px\]\:mt-\[5\%\] {
    margin-top: 5%;
  }
}
@media (min-width: 1400px) {
  .min-\[1400px\]\:\!ml-0 {
    margin-left: 0 !important;
  }
  .min-\[1400px\]\:mr-\[5\%\] {
    margin-right: 5%;
  }
  .min-\[1400px\]\:mt-\[15\%\] {
    margin-top: 15%;
  }
  .min-\[1400px\]\:w-\[45\%\] {
    width: 45%;
  }
  .min-\[1400px\]\:text-\[92\.651px\] {
    font-size: 92.651px;
  }
}
@media (min-width: 1536px) {
  .\32xl\:bottom-\[90\%\] {
    bottom: 90%;
  }
  .\32xl\:mr-\[27\%\] {
    margin-right: 27%;
  }
  .\32xl\:mr-\[7\%\] {
    margin-right: 7%;
  }
  .\32xl\:mt-0 {
    margin-top: 0;
  }
  .\32xl\:mt-4 {
    margin-top: 1rem;
  }
  .\32xl\:mt-\[12\%\] {
    margin-top: 12%;
  }
  .\32xl\:mt-\[15\%\] {
    margin-top: 15%;
  }
  .\32xl\:mt-\[30px\] {
    margin-top: 30px;
  }
  .\32xl\:mt-\[35\%\] {
    margin-top: 35%;
  }
  .\32xl\:w-\[82px\] {
    width: 82px;
  }
  .\32xl\:max-w-\[750px\] {
    max-width: 750px;
  }
  .\32xl\:pt-\[100px\] {
    padding-top: 100px;
  }
  .\32xl\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .\32xl\:text-\[16px\] {
    font-size: 16px;
  }
  .\32xl\:text-\[18px\] {
    font-size: 18px;
  }
  .\32xl\:text-\[22px\] {
    font-size: 22px;
  }
  .\32xl\:text-\[24px\] {
    font-size: 24px;
  }
  .\32xl\:text-\[26px\] {
    font-size: 26px;
  }
  .\32xl\:text-\[36px\] {
    font-size: 36px;
  }
  .\32xl\:text-\[50px\] {
    font-size: 50px;
  }
  .\32xl\:leading-\[32px\] {
    line-height: 32px;
  }
  .\32xl\:leading-\[36px\] {
    line-height: 36px;
  }
  .\32xl\:leading-\[50px\] {
    line-height: 50px;
  }
  .\32xl\:leading-\[54px\] {
    line-height: 54px;
  }
}
@media (min-width: 1800px) {
  .min-\[1800px\]\:\!mr-\[45\%\] {
    margin-right: 45% !important;
  }
  .min-\[1800px\]\:\!mt-\[30\%\] {
    margin-top: 30% !important;
  }
  .min-\[1800px\]\:mt-\[16\%\] {
    margin-top: 16%;
  }
  .min-\[1800px\]\:mt-\[40\%\] {
    margin-top: 40%;
  }
}
@media (min-width: 1920px) {
  .\33xl\:left-\[23\%\] {
    left: 23%;
  }
  .\33xl\:mt-\[40px\] {
    margin-top: 40px;
  }
  .\33xl\:max-h-\[1500px\] {
    max-height: 1500px;
  }
  .\33xl\:w-\[75\%\] {
    width: 75%;
  }
  .\33xl\:max-w-\[850px\] {
    max-width: 850px;
  }
  .\33xl\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .\33xl\:text-\[20px\] {
    font-size: 20px;
  }
  .\33xl\:text-\[24px\] {
    font-size: 24px;
  }
  .\33xl\:text-\[28px\] {
    font-size: 28px;
  }
}
@media (min-width: 2500px) {
  .\34xl\:mt-\[40px\] {
    margin-top: 40px;
  }
  .\34xl\:size-8 {
    width: 2rem;
    height: 2rem;
  }
  .\34xl\:h-10 {
    height: 2.5rem;
  }
  .\34xl\:h-\[175px\] {
    height: 175px;
  }
  .\34xl\:w-\[100px\] {
    width: 100px;
  }
  .\34xl\:w-\[6px\] {
    width: 6px;
  }
  .\34xl\:max-w-\[1200px\] {
    max-width: 1200px;
  }
  .\34xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .\34xl\:text-\[20px\] {
    font-size: 20px;
  }
  .\34xl\:text-\[22px\] {
    font-size: 22px;
  }
  .\34xl\:text-\[26px\] {
    font-size: 26px;
  }
  .\34xl\:text-\[30px\] {
    font-size: 30px;
  }
  .\34xl\:text-\[60px\] {
    font-size: 60px;
  }
  .\34xl\:leading-\[30px\] {
    line-height: 30px;
  }
  .\34xl\:leading-\[35px\] {
    line-height: 35px;
  }
  .\34xl\:leading-\[60px\] {
    line-height: 60px;
  }
}
.\[\&\>span\:last-child\]\:mr-\[40px\] > span:last-child {
  margin-right: 40px;
}
