@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
}
.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
  overflow: hidden;
}
.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}
.Toastify__toast--stacked[data-collapsed=false] {
  overflow: visible;
}
.Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
  opacity: 0;
}
.Toastify__toast--stacked:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}
.Toastify__toast--stacked[data-pos=top] {
  top: 0;
}
.Toastify__toast--stacked[data-pos=bot] {
  bottom: 0;
}
.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
  transform-origin: top;
}
.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
  transform-origin: bottom;
}
.Toastify__toast--stacked:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
  z-index: 1;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp[data-hidden=true] {
  opacity: 0;
}
.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=ReactToastify.css.map *//**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, 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');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */


/* All the configs & default css here */
::-webkit-scrollbar {
  width: 0rem;
  height: 0rem;
  display: none;
}
/* Track */
::-webkit-scrollbar-track {
  border-radius: 100vh;
  background: var(--color-dark);
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-dark);
  border-radius: 100vh;
  border: 0rem solid var(--color-primary);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}
.scrollbar-hide {
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
  scrollbar-width: none; /* For Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}
.disabled-button-shadow {
  box-shadow:
    0px 2px 6px 0px #b1b1b1 inset,
    0px 2px 20px 0px rgba(255, 255, 255, 0.25);
}
.button-shadow {
  box-shadow:
    0px 2px 8px 0px #beff55 inset,
    0px 2px 20px 0px rgba(160, 255, 6, 0.25);
}
.button-shadow-ref {
  box-shadow: 0px 14px 36px 0px rgba(255, 177, 0, 0.18);
}
.rippleEffect {
  width: 60px;
  height: 60px;
  background-color: black;
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
}
.rippleEffect.active {
  animation: rippleEffect 0.9s ease infinite;
}
@keyframes rippleEffect {
  0% {
    opacity: 0.3;
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(10);
  }
}
.ant-slider .ant-slider-dot {
  width: 1px;
  height: 7px;
  border-radius: 30%;
  border: 1px solid #1c1c1d;
}
.ant-slider .ant-slider-mark-text {
  color: rgb(255, 255, 255);
}
.ant-slider .ant-slider-handle::after {
  background-color: #7ecc00;
  box-shadow: none;
}
.ant-slider-horizontal .ant-slider-mark {
  top: 15px;
}
.ant-tooltip .ant-tooltip-inner {
  color: black;
  min-height: 20px;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header {
  padding: 0;
}
.ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding: 0;
}
.ant-collapse-expand-icon {
  border: 1px solid #5c5d6e;
  border-radius: 100px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ant-collapse.ant-collapse-icon-position-end > .ant-collapse-item > .ant-collapse-header .ant-collapse-expand-icon {
  padding-inline-start: 0;
}
.ant-radio-wrapper .ant-radio-inner {
  background-color: #000;
  border: 2px solid #333333;
}
.ant-radio-wrapper .ant-radio-inner::after {
  background-color: #000;
}
.custom-progress .ant-progress-text {
  color: #ffffff;
  font-size: 11px;
}
.ant-drawer .ant-drawer-body {
  padding: 0;
}
.ant-modal .ant-modal-content {
  padding: 0;
}
.ant-dropdown .ant-dropdown-menu {
  background-color: #1c1c1c;
}
.ant-popover .ant-popover-inner {
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 7.5rem;
}
@keyframes loadingText {
  0% {
    content: 'loading';
  }
  25% {
    content: 'loading.';
  }
  50% {
    content: 'loading..';
  }
  75% {
    content: 'loading...';
  }
  100% {
    content: 'loading';
  }
}
.loading-text::after {
  content: 'loading';
  animation: loadingText 2s steps(4) infinite;
}
.blur-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle, rgba(160, 255, 6, 0.2), rgba(0, 0, 0, 0.1)); /* Adjust transparency as needed */
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.blur-container-landing {
  z-index: 50;
  position: absolute;
  width: 100%;
  height: 100vh;
  margin-top: -110vh;
  background: radial-gradient(
    circle,
    rgba(160, 255, 6, 0.4) 70%,
    rgba(0, 0, 0, 0.1) 70%
  ); /* Adjust transparency as needed */
}
.blur-container-mint-loading {
  position: absolute;
  width: 100%;
  height: 100vh;
  margin-top: -50vh;
  background: radial-gradient(
    circle,
    rgba(160, 255, 6, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 70%
  ); /* Adjust transparency as needed */
}
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.gradient-left,
.gradient-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 300px; /* Adjust width based on how much fading you want */
  z-index: 9999;
  pointer-events: none; /* Ensure these don't interfere with clicks */
}
.gradient-left {
  left: 0;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
}
.gradient-right {
  right: 0;
  background: linear-gradient(270deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-slide-up {
  animation: slideUp 1s ease-out forwards;
}
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animate-slide-left {
  animation: slideInFromLeft 0.5s ease-out forwards;
}
@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%); /* Start above the screen */
    opacity: 0; /* Start as invisible */
  }
  100% {
    transform: translateY(0); /* End in the original position */
    opacity: 1; /* Fade in */
  }
}
.animate-slide-top {
  animation: slideInFromTop 0.5s ease-out forwards; /* Apply animation */
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}
.shake {
  animation: shake 0.2s ease-in-out;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}
.animate-shake {
  animation: shake 0.2s ease-in-out infinite !important;
}
.shake-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 215, 138, 0.4), rgba(0, 0, 0, 0.1)); /* Adjust transparency as needed */
  left: 50%;
  transform: translateX(-50%);
}
@keyframes shake {
  0%,
  100% {
    transform: translate(0, 0);
  }
  20%,
  60% {
    transform: translate(-2px, 2px);
  }
  40%,
  80% {
    transform: translate(2px, -2px);
  }
}
.shake {
  animation: shake 0.5s ease-in-out infinite;
}
@keyframes shake-up-down {
  0%,
  100% {
    transform: translateY(0);
  }
  20%,
  60% {
    transform: translateY(-4px);
  }
  40%,
  80% {
    transform: translateY(4px);
  }
}
.shake-up-down {
  animation: shake-up-down 4s ease-in-out infinite;
}
.swiper-slide-custom {
  width: 75%; /* Adjust width to show parts of side slides */
  transition: transform 0.3s ease-in-out;
}
.swiper-slide-custom.swiper-slide-active {
  transform: scale(1.5); /* Make center slide bigger */
}
.swiper-slide-custom:not(.swiper-slide-active) {
  opacity: 0.4; /* Optional: Reduce opacity of side slides */
}
.swiper-slide-custom .description {
  opacity: 0; /* Hide by default */
  transform: translateY(10px); /* Add slight animation */
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.swiper-slide-active .description {
  opacity: 1; /* Show only on the active slide */
  transform: translateY(0);
}
#tv-attr-logo {
  display: none !important;
}
.truncate {
  display: inline-block;
  max-width: 100%; /* or set a specific max-width for the container */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gradient-border-corners-left {
  position: absolute;
  inset: 0;
  border-radius: 0.375rem; /* Equivalent to Tailwind's rounded-md */
  background: linear-gradient(to bottom right, var(--color-primary), transparent, var(--color-primary));
  -webkit-mask-image: linear-gradient(to bottom right, black 50%, transparent 50%);
  mask-image: linear-gradient(to bottom right, black 50%, transparent 50%);
  pointer-events: none;
}
.gradient-border-corners-right {
  position: absolute;
  inset: 0;
  border-radius: 0.375rem; /* Equivalent to Tailwind's rounded-md */
  background: linear-gradient(to top left, var(--color-primary), transparent, var(--color-primary));
  -webkit-mask-image: linear-gradient(to top left, black 50%, transparent 50%);
  mask-image: linear-gradient(to top left, black 50%, transparent 50%);
  pointer-events: 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:  ;
}
/* ! tailwindcss v3.4.17 | 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]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
  width: 100%;
}
@media (min-width: 330px){
  .container{
    max-width: 330px;
  }
}
@media (min-width: 370px){
  .container{
    max-width: 370px;
  }
}
@media (min-width: 400px){
  .container{
    max-width: 400px;
  }
}
@media (min-width: 430px){
  .container{
    max-width: 430px;
  }
}
@media (min-width: 480px){
  .container{
    max-width: 480px;
  }
}
@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: 1580px){
  .container{
    max-width: 1580px;
  }
}
@media (min-width: 1920px){
  .container{
    max-width: 1920px;
  }
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.-bottom-18{
  bottom: -4.5rem;
}
.-right-2{
  right: -0.5rem;
}
.-top-2{
  top: -0.5rem;
}
.-top-\[22px\]{
  top: -22px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-2{
  bottom: 0.5rem;
}
.bottom-20{
  bottom: 5rem;
}
.bottom-5{
  bottom: 1.25rem;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-3{
  left: 0.75rem;
}
.left-4{
  left: 1rem;
}
.left-6{
  left: 1.5rem;
}
.right-0{
  right: 0px;
}
.right-3{
  right: 0.75rem;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-2{
  top: 0.5rem;
}
.top-20{
  top: 5rem;
}
.top-7{
  top: 1.75rem;
}
.top-8{
  top: 2rem;
}
.-z-0{
  z-index: 0;
}
.-z-50{
  z-index: -50;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-30{
  z-index: 30;
}
.z-40{
  z-index: 40;
}
.z-50{
  z-index: 50;
}
.col-span-1{
  grid-column: span 1 / span 1;
}
.col-span-12{
  grid-column: span 12 / span 12;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.col-span-3{
  grid-column: span 3 / span 3;
}
.col-span-8{
  grid-column: span 8 / span 8;
}
.m-auto{
  margin: auto;
}
.-my-8{
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-5{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-7{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-\[10\%\]{
  margin-top: 10%;
  margin-bottom: 10%;
}
.my-\[2\%\]{
  margin-top: 2%;
  margin-bottom: 2%;
}
.my-\[3\%\]{
  margin-top: 3%;
  margin-bottom: 3%;
}
.my-\[4\%\]{
  margin-top: 4%;
  margin-bottom: 4%;
}
.my-\[5\%\]{
  margin-top: 5%;
  margin-bottom: 5%;
}
.-mb-1{
  margin-bottom: -0.25rem;
}
.-mr-3{
  margin-right: -0.75rem;
}
.-mt-14{
  margin-top: -3.5rem;
}
.-mt-9{
  margin-top: -2.25rem;
}
.mb-0{
  margin-bottom: 0px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-7{
  margin-bottom: 1.75rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[2\%\]{
  margin-bottom: 2%;
}
.mb-\[3\%\]{
  margin-bottom: 3%;
}
.me-1{
  margin-inline-end: 0.25rem;
}
.me-3{
  margin-inline-end: 0.75rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.mr-1{
  margin-right: 0.25rem;
}
.ms-1{
  margin-inline-start: 0.25rem;
}
.ms-2{
  margin-inline-start: 0.5rem;
}
.ms-5{
  margin-inline-start: 1.25rem;
}
.ms-\[20\%\]{
  margin-inline-start: 20%;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-28{
  margin-top: 7rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-7{
  margin-top: 1.75rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[10\%\]{
  margin-top: 10%;
}
.mt-\[14\%\]{
  margin-top: 14%;
}
.mt-\[2\%\]{
  margin-top: 2%;
}
.mt-\[3\%\]{
  margin-top: 3%;
}
.mt-\[4\%\]{
  margin-top: 4%;
}
.mt-\[5\%\]{
  margin-top: 5%;
}
.mt-\[8\%\]{
  margin-top: 8%;
}
.mt-\[9\%\]{
  margin-top: 9%;
}
.mt-auto{
  margin-top: auto;
}
.box-border{
  box-sizing: border-box;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.\!h-20{
  height: 5rem !important;
}
.\!h-56{
  height: 14rem !important;
}
.h-10{
  height: 2.5rem;
}
.h-11{
  height: 2.75rem;
}
.h-12{
  height: 3rem;
}
.h-14{
  height: 3.5rem;
}
.h-16{
  height: 4rem;
}
.h-18{
  height: 4.5rem;
}
.h-20{
  height: 5rem;
}
.h-3{
  height: 0.75rem;
}
.h-30{
  height: 7.5rem;
}
.h-36{
  height: 9rem;
}
.h-40{
  height: 10rem;
}
.h-48{
  height: 12rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-7{
  height: 1.75rem;
}
.h-72{
  height: 18rem;
}
.h-8{
  height: 2rem;
}
.h-9{
  height: 2.25rem;
}
.h-96{
  height: 24rem;
}
.h-\[0\.5px\]{
  height: 0.5px;
}
.h-\[10px\]{
  height: 10px;
}
.h-\[14px\]{
  height: 14px;
}
.h-\[150px\]{
  height: 150px;
}
.h-\[15px\]{
  height: 15px;
}
.h-\[16px\]{
  height: 16px;
}
.h-\[180px\]{
  height: 180px;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[20px\]{
  height: 20px;
}
.h-\[28px\]{
  height: 28px;
}
.h-\[32px\]{
  height: 32px;
}
.h-\[34px\]{
  height: 34px;
}
.h-\[54px\]{
  height: 54px;
}
.h-\[55px\]{
  height: 55px;
}
.h-\[60svh\]{
  height: 60svh;
}
.h-\[78vh\]{
  height: 78vh;
}
.h-\[7px\]{
  height: 7px;
}
.h-\[80vh\]{
  height: 80vh;
}
.h-\[80vw\]{
  height: 80vw;
}
.h-\[84\%\]{
  height: 84%;
}
.h-\[85vh\]{
  height: 85vh;
}
.h-\[90px\]{
  height: 90px;
}
.h-\[90vh\]{
  height: 90vh;
}
.h-\[99\%\]{
  height: 99%;
}
.h-\[calc\(100vh-400px\)\]{
  height: calc(100vh - 400px);
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-screen{
  height: 100vh;
}
.max-h-12{
  max-height: 3rem;
}
.max-h-18{
  max-height: 4.5rem;
}
.max-h-48{
  max-height: 12rem;
}
.max-h-60{
  max-height: 15rem;
}
.max-h-80{
  max-height: 20rem;
}
.max-h-\[270px\]{
  max-height: 270px;
}
.max-h-\[280px\]{
  max-height: 280px;
}
.max-h-\[3\.375rem\]{
  max-height: 3.375rem;
}
.max-h-\[300px\]{
  max-height: 300px;
}
.min-h-11{
  min-height: 2.75rem;
}
.min-h-12{
  min-height: 3rem;
}
.min-h-16{
  min-height: 4rem;
}
.min-h-18{
  min-height: 4.5rem;
}
.min-h-20{
  min-height: 5rem;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[282px\]{
  min-height: 282px;
}
.min-h-\[3\.375rem\]{
  min-height: 3.375rem;
}
.min-h-\[300px\]{
  min-height: 300px;
}
.min-h-\[420px\]{
  min-height: 420px;
}
.min-h-\[470px\]{
  min-height: 470px;
}
.min-h-\[calc\(100vh-120px\)\]{
  min-height: calc(100vh - 120px);
}
.min-h-full{
  min-height: 100%;
}
.\!w-40{
  width: 10rem !important;
}
.\!w-full{
  width: 100% !important;
}
.w-0\.5{
  width: 0.125rem;
}
.w-1\/2{
  width: 50%;
}
.w-10{
  width: 2.5rem;
}
.w-11{
  width: 2.75rem;
}
.w-12{
  width: 3rem;
}
.w-14{
  width: 3.5rem;
}
.w-16{
  width: 4rem;
}
.w-18{
  width: 4.5rem;
}
.w-20{
  width: 5rem;
}
.w-24{
  width: 6rem;
}
.w-28{
  width: 7rem;
}
.w-3{
  width: 0.75rem;
}
.w-30{
  width: 7.5rem;
}
.w-32{
  width: 8rem;
}
.w-4{
  width: 1rem;
}
.w-40{
  width: 10rem;
}
.w-44{
  width: 11rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-7{
  width: 1.75rem;
}
.w-8{
  width: 2rem;
}
.w-9{
  width: 2.25rem;
}
.w-\[105px\]{
  width: 105px;
}
.w-\[10px\]{
  width: 10px;
}
.w-\[12\%\]{
  width: 12%;
}
.w-\[120px\]{
  width: 120px;
}
.w-\[14px\]{
  width: 14px;
}
.w-\[15px\]{
  width: 15px;
}
.w-\[16px\]{
  width: 16px;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[20px\]{
  width: 20px;
}
.w-\[22px\]{
  width: 22px;
}
.w-\[28px\]{
  width: 28px;
}
.w-\[32\%\]{
  width: 32%;
}
.w-\[34px\]{
  width: 34px;
}
.w-\[35\%\]{
  width: 35%;
}
.w-\[40\%\]{
  width: 40%;
}
.w-\[49\%\]{
  width: 49%;
}
.w-\[50\%\]{
  width: 50%;
}
.w-\[53\%\]{
  width: 53%;
}
.w-\[57\%\]{
  width: 57%;
}
.w-\[62\%\]{
  width: 62%;
}
.w-\[68\%\]{
  width: 68%;
}
.w-\[70\%\]{
  width: 70%;
}
.w-\[80vw\]{
  width: 80vw;
}
.w-\[90\%\]{
  width: 90%;
}
.w-\[91vw\]{
  width: 91vw;
}
.w-\[97\%\]{
  width: 97%;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.w-screen{
  width: 100vw;
}
.min-w-3{
  min-width: 0.75rem;
}
.min-w-7{
  min-width: 1.75rem;
}
.max-w-28{
  max-width: 7rem;
}
.max-w-40{
  max-width: 10rem;
}
.max-w-48{
  max-width: 12rem;
}
.max-w-56{
  max-width: 14rem;
}
.max-w-\[1024px\]{
  max-width: 1024px;
}
.max-w-\[300px\]{
  max-width: 300px;
}
.max-w-\[350px\]{
  max-width: 350px;
}
.max-w-\[393px\]{
  max-width: 393px;
}
.max-w-\[430px\]{
  max-width: 430px;
}
.max-w-\[660px\]{
  max-width: 660px;
}
.max-w-screen-2xl{
  max-width: 768px;
}
.max-w-screen-3xl{
  max-width: 1024px;
}
.max-w-screen-lg{
  max-width: 430px;
}
.max-w-screen-max{
  max-width: 1920px;
}
.max-w-screen-xl{
  max-width: 480px;
}
.flex-1{
  flex: 1 1 0%;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.-translate-x-1\/2{
  --tw-translate-x: -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-1\/2{
  --tw-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));
}
.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-125{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  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 ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping{
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse{
  50%{
    opacity: .5;
  }
}
.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes shimmer{
  0%{
    transform: translateX(-100%);
  }
  45%{
    transform: translateX(100%);
  }
  50%{
    transform: translateX(100%);
  }
  100%{
    transform: translateX(100%);
  }
}
.animate-shimmer{
  animation: shimmer 3s infinite linear;
}
@keyframes shimmer{
  0%{
    transform: translateX(-100%);
  }
  45%{
    transform: translateX(100%);
  }
  50%{
    transform: translateX(100%);
  }
  100%{
    transform: translateX(100%);
  }
}
.animate-shimmerDelay1{
  animation: shimmer 3s infinite linear 1s;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize{
  resize: both;
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-\[15\%\2c 83\%\]{
  grid-template-columns: 15% 83%;
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.place-items-center{
  place-items: center;
}
.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;
}
.justify-around{
  justify-content: space-around;
}
.gap-0{
  gap: 0px;
}
.gap-1{
  gap: 0.25rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.gap-\[2px\]{
  gap: 2px;
}
.gap-y-1{
  row-gap: 0.25rem;
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.self-center{
  align-self: center;
}
.justify-self-center{
  justify-self: center;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-scroll{
  overflow: scroll;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-wrap{
  text-wrap: wrap;
}
.text-nowrap{
  text-wrap: nowrap;
}
.break-words{
  overflow-wrap: break-word;
}
.\!rounded-\[14px\]{
  border-radius: 14px !important;
}
.\!rounded-xl{
  border-radius: 0.75rem !important;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-\[12px\]{
  border-radius: 12px;
}
.rounded-\[14px\]{
  border-radius: 14px;
}
.rounded-\[18px\]{
  border-radius: 18px;
}
.rounded-\[20px\]{
  border-radius: 20px;
}
.rounded-\[30px\]{
  border-radius: 30px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-none{
  border-radius: 0px;
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-b-2xl{
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.rounded-l-none{
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-l-xl{
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-r-3xl{
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.rounded-r-none{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.rounded-r-xl{
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.rounded-t-2xl{
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-l{
  border-left-width: 1px;
}
.border-l-2{
  border-left-width: 2px;
}
.border-r{
  border-right-width: 1px;
}
.border-none{
  border-style: none;
}
.border-\[\#1B1B1B\]{
  --tw-border-opacity: 1;
  border-color: rgb(27 27 27 / var(--tw-border-opacity, 1));
}
.border-\[\#1C1C1D\]{
  --tw-border-opacity: 1;
  border-color: rgb(28 28 29 / var(--tw-border-opacity, 1));
}
.border-\[\#1F1F1F\]{
  --tw-border-opacity: 1;
  border-color: rgb(31 31 31 / var(--tw-border-opacity, 1));
}
.border-\[\#262626\]{
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.border-\[\#292929\]{
  --tw-border-opacity: 1;
  border-color: rgb(41 41 41 / var(--tw-border-opacity, 1));
}
.border-\[\#2b2b2b\]{
  --tw-border-opacity: 1;
  border-color: rgb(43 43 43 / var(--tw-border-opacity, 1));
}
.border-\[\#333333\]{
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity, 1));
}
.border-\[\#373739\]{
  --tw-border-opacity: 1;
  border-color: rgb(55 55 57 / var(--tw-border-opacity, 1));
}
.border-\[\#3e3e3f\]{
  --tw-border-opacity: 1;
  border-color: rgb(62 62 63 / var(--tw-border-opacity, 1));
}
.border-\[\#4A4A4A\]{
  --tw-border-opacity: 1;
  border-color: rgb(74 74 74 / var(--tw-border-opacity, 1));
}
.border-\[\#67BEFF26\]{
  border-color: #67BEFF26;
}
.border-\[\#727272\]{
  --tw-border-opacity: 1;
  border-color: rgb(114 114 114 / var(--tw-border-opacity, 1));
}
.border-\[\#96FF7026\]{
  border-color: #96FF7026;
}
.border-\[\#9D9D9D26\]{
  border-color: #9D9D9D26;
}
.border-\[\#FF585826\]{
  border-color: #FF585826;
}
.border-\[\#FF953E1A\]{
  border-color: #FF953E1A;
}
.border-\[\#FFB80121\]{
  border-color: #FFB80121;
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-borderGray{
  --tw-border-opacity: 1;
  border-color: rgb(84 84 88 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-700{
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-primary{
  border-color: var(--color-primary);
}
.border-secondary{
  border-color: var(--color-secondary);
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/\[10\%\]{
  border-color: rgb(255 255 255 / 10%);
}
.border-b-primary{
  border-bottom-color: var(--color-primary);
}
.border-opacity-20{
  --tw-border-opacity: 0.2;
}
.\!bg-\[\#1C1C1D\]{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(28 28 29 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-primary{
  background-color: var(--color-primary) !important;
}
.\!bg-transparent{
  background-color: transparent !important;
}
.bg-\[\#0098EB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 152 235 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0f0f19\]{
  --tw-bg-opacity: 1;
  background-color: rgb(15 15 25 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0f140f\]{
  --tw-bg-opacity: 1;
  background-color: rgb(15 20 15 / var(--tw-bg-opacity, 1));
}
.bg-\[\#121212\]{
  --tw-bg-opacity: 1;
  background-color: rgb(18 18 18 / var(--tw-bg-opacity, 1));
}
.bg-\[\#131313\]{
  --tw-bg-opacity: 1;
  background-color: rgb(19 19 19 / var(--tw-bg-opacity, 1));
}
.bg-\[\#141414\]{
  --tw-bg-opacity: 1;
  background-color: rgb(20 20 20 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1B1B1B\]{
  --tw-bg-opacity: 1;
  background-color: rgb(27 27 27 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1C1C1D\]{
  --tw-bg-opacity: 1;
  background-color: rgb(28 28 29 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1E1E1E\]{
  --tw-bg-opacity: 1;
  background-color: rgb(30 30 30 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1b1510\]{
  --tw-bg-opacity: 1;
  background-color: rgb(27 21 16 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1c1c1c\]{
  --tw-bg-opacity: 1;
  background-color: rgb(28 28 28 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1e1e1e\]{
  --tw-bg-opacity: 1;
  background-color: rgb(30 30 30 / var(--tw-bg-opacity, 1));
}
.bg-\[\#26210f\]{
  --tw-bg-opacity: 1;
  background-color: rgb(38 33 15 / var(--tw-bg-opacity, 1));
}
.bg-\[\#262626\]{
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}
.bg-\[\#292929\]{
  --tw-bg-opacity: 1;
  background-color: rgb(41 41 41 / var(--tw-bg-opacity, 1));
}
.bg-\[\#333268\]{
  --tw-bg-opacity: 1;
  background-color: rgb(51 50 104 / var(--tw-bg-opacity, 1));
}
.bg-\[\#373739\]{
  --tw-bg-opacity: 1;
  background-color: rgb(55 55 57 / var(--tw-bg-opacity, 1));
}
.bg-\[\#3d3d3d\]{
  --tw-bg-opacity: 1;
  background-color: rgb(61 61 61 / var(--tw-bg-opacity, 1));
}
.bg-\[\#414143\]{
  --tw-bg-opacity: 1;
  background-color: rgb(65 65 67 / var(--tw-bg-opacity, 1));
}
.bg-\[\#444\]{
  --tw-bg-opacity: 1;
  background-color: rgb(68 68 68 / var(--tw-bg-opacity, 1));
}
.bg-\[\#516fbd\]{
  --tw-bg-opacity: 1;
  background-color: rgb(81 111 189 / var(--tw-bg-opacity, 1));
}
.bg-\[\#545458A6\]{
  background-color: #545458A6;
}
.bg-\[\#64646433\]{
  background-color: #64646433;
}
.bg-\[\#676767\]{
  --tw-bg-opacity: 1;
  background-color: rgb(103 103 103 / var(--tw-bg-opacity, 1));
}
.bg-\[\#67BEFF33\]{
  background-color: #67BEFF33;
}
.bg-\[\#8FAEFF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(143 174 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#96FF7033\]{
  background-color: #96FF7033;
}
.bg-\[\#9D9D9D33\]{
  background-color: #9D9D9D33;
}
.bg-\[\#FF585833\]{
  background-color: #FF585833;
}
.bg-\[\#FF953E33\]{
  background-color: #FF953E33;
}
.bg-\[\#FFB100\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 177 0 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFE7AB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 231 171 / var(--tw-bg-opacity, 1));
}
.bg-\[\#cccccc\]{
  --tw-bg-opacity: 1;
  background-color: rgb(204 204 204 / var(--tw-bg-opacity, 1));
}
.bg-\[\#cfaf5e\]{
  --tw-bg-opacity: 1;
  background-color: rgb(207 175 94 / var(--tw-bg-opacity, 1));
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-darkGray{
  --tw-bg-opacity: 1;
  background-color: rgb(41 41 41 / var(--tw-bg-opacity, 1));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-green{
  --tw-bg-opacity: 1;
  background-color: rgb(52 199 89 / var(--tw-bg-opacity, 1));
}
.bg-primary{
  background-color: var(--color-primary);
}
.bg-red{
  background-color: var(--color-red);
}
.bg-secondary{
  background-color: var(--color-secondary);
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/\[5\%\]{
  background-color: rgb(255 255 255 / 5%);
}
.bg-opacity-70{
  --tw-bg-opacity: 0.7;
}
.bg-\[url\(\"assets\/images\/ai-prompt-bg\.png\"\)\]{
  background-image: url("/assets/ai-prompt-bg-n8ESiaUg.png");
}
.bg-\[url\(\"assets\/images\/airdrop-live-bg\.png\"\)\]{
  background-image: url("/assets/airdrop-live-bg-DAUGaQiW.png");
}
.bg-\[url\(\"assets\/images\/landing-bg\.png\"\)\]{
  background-image: url("/assets/landing-bg-cNMn0W7c.png");
}
.bg-\[url\(\"assets\/images\/profile-sample\.png\"\)\]{
  background-image: url("data:image/png;base64,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");
}
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-none{
  background-image: none;
}
.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-white\/10{
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / 0.1) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-transparent{
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-cover{
  background-size: cover;
}
.bg-fixed{
  background-attachment: fixed;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.bg-repeat-y{
  background-repeat: repeat-y;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center{
  -o-object-position: center;
     object-position: center;
}
.object-top{
  -o-object-position: top;
     object-position: top;
}
.p-0{
  padding: 0px;
}
.p-1{
  padding: 0.25rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-\[1px\]{
  padding: 1px;
}
.p-\[6px\]{
  padding: 6px;
}
.px-0{
  padding-left: 0px;
  padding-right: 0px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-11{
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}
.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-14{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.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-7{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[10\%\]{
  padding-left: 10%;
  padding-right: 10%;
}
.px-\[24\%\]{
  padding-left: 24%;
  padding-right: 24%;
}
.px-\[3\%\]{
  padding-left: 3%;
  padding-right: 3%;
}
.px-\[4\%\]{
  padding-left: 4%;
  padding-right: 4%;
}
.px-\[5\%\]{
  padding-left: 5%;
  padding-right: 5%;
}
.px-\[8\%\]{
  padding-left: 8%;
  padding-right: 8%;
}
.py-0{
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.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-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[14px\]{
  padding-top: 14px;
  padding-bottom: 14px;
}
.py-\[2px\]{
  padding-top: 2px;
  padding-bottom: 2px;
}
.py-\[3px\]{
  padding-top: 3px;
  padding-bottom: 3px;
}
.py-\[4\%\]{
  padding-top: 4%;
  padding-bottom: 4%;
}
.py-\[6\%\]{
  padding-top: 6%;
  padding-bottom: 6%;
}
.py-\[6px\]{
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-\[8\%\]{
  padding-top: 8%;
  padding-bottom: 8%;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pb-12{
  padding-bottom: 3rem;
}
.pb-14{
  padding-bottom: 3.5rem;
}
.pb-16{
  padding-bottom: 4rem;
}
.pb-18{
  padding-bottom: 4.5rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pb-24{
  padding-bottom: 6rem;
}
.pb-28{
  padding-bottom: 7rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-32{
  padding-bottom: 8rem;
}
.pb-36{
  padding-bottom: 9rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-40{
  padding-bottom: 10rem;
}
.pb-44{
  padding-bottom: 11rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-7{
  padding-bottom: 1.75rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pb-\[16\%\]{
  padding-bottom: 16%;
}
.pb-\[32\%\]{
  padding-bottom: 32%;
}
.pb-\[4\%\]{
  padding-bottom: 4%;
}
.pb-\[40\%\]{
  padding-bottom: 40%;
}
.pb-\[40vh\]{
  padding-bottom: 40vh;
}
.pb-\[6\%\]{
  padding-bottom: 6%;
}
.pe-0{
  padding-inline-end: 0px;
}
.pe-2{
  padding-inline-end: 0.5rem;
}
.pe-5{
  padding-inline-end: 1.25rem;
}
.pe-7{
  padding-inline-end: 1.75rem;
}
.pe-9{
  padding-inline-end: 2.25rem;
}
.ps-1{
  padding-inline-start: 0.25rem;
}
.ps-10{
  padding-inline-start: 2.5rem;
}
.ps-15{
  padding-inline-start: 3.75rem;
}
.ps-2{
  padding-inline-start: 0.5rem;
}
.ps-7{
  padding-inline-start: 1.75rem;
}
.ps-9{
  padding-inline-start: 2.25rem;
}
.pt-0{
  padding-top: 0px;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-12{
  padding-top: 3rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-20{
  padding-top: 5rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-7{
  padding-top: 1.75rem;
}
.pt-9{
  padding-top: 2.25rem;
}
.pt-\[1\%\]{
  padding-top: 1%;
}
.pt-\[1px\]{
  padding-top: 1px;
}
.pt-\[2px\]{
  padding-top: 2px;
}
.pt-\[3\%\]{
  padding-top: 3%;
}
.pt-\[30\%\]{
  padding-top: 30%;
}
.pt-\[4\%\]{
  padding-top: 4%;
}
.pt-\[5\%\]{
  padding-top: 5%;
}
.pt-\[6\%\]{
  padding-top: 6%;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-start{
  text-align: start;
}
.text-end{
  text-align: end;
}
.font-gothic{
  font-family: var(--family-gothic);
}
.font-secondary{
  font-family: var(--family-secondary);
}
.text-2xl{
  font-size: 1.688rem;
}
.text-3xl{
  font-size: 2.063rem;
}
.text-4xl{
  font-size: 2.5rem;
}
.text-5xl{
  font-size: 3.063rem;
}
.text-\[0\.875rem\]{
  font-size: 0.875rem;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[11px\]{
  font-size: 11px;
}
.text-\[22px\]{
  font-size: 22px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[25px\]{
  font-size: 25px;
}
.text-\[30px\]{
  font-size: 30px;
}
.text-\[45px\]{
  font-size: 45px;
}
.text-\[7px\]{
  font-size: 7px;
}
.text-\[8px\]{
  font-size: 8px;
}
.text-\[9px\]{
  font-size: 9px;
}
.text-base{
  font-size: 1rem;
}
.text-lg{
  font-size: 1.125rem;
}
.text-sm{
  font-size: 0.875rem;
}
.text-xl{
  font-size: 1.25rem;
}
.text-xs{
  font-size: 0.75rem;
}
.text-xxs{
  font-size: 0.625rem;
}
.font-bold{
  font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.leading-10{
  line-height: 2.5rem;
}
.leading-3{
  line-height: .75rem;
}
.leading-4{
  line-height: 1rem;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-7{
  line-height: 1.75rem;
}
.leading-9{
  line-height: 2.25rem;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-tighter{
  letter-spacing: -0.05em;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.\!text-black{
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1)) !important;
}
.\!text-white{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#00B670\]{
  --tw-text-opacity: 1;
  color: rgb(0 182 112 / var(--tw-text-opacity, 1));
}
.text-\[\#141414\]{
  --tw-text-opacity: 1;
  color: rgb(20 20 20 / var(--tw-text-opacity, 1));
}
.text-\[\#2CCE55\]{
  --tw-text-opacity: 1;
  color: rgb(44 206 85 / var(--tw-text-opacity, 1));
}
.text-\[\#2E93FF\]{
  --tw-text-opacity: 1;
  color: rgb(46 147 255 / var(--tw-text-opacity, 1));
}
.text-\[\#419CFF\]{
  --tw-text-opacity: 1;
  color: rgb(65 156 255 / var(--tw-text-opacity, 1));
}
.text-\[\#67BEFF\]{
  --tw-text-opacity: 1;
  color: rgb(103 190 255 / var(--tw-text-opacity, 1));
}
.text-\[\#6B6B6B\]{
  --tw-text-opacity: 1;
  color: rgb(107 107 107 / var(--tw-text-opacity, 1));
}
.text-\[\#7469FF\]{
  --tw-text-opacity: 1;
  color: rgb(116 105 255 / var(--tw-text-opacity, 1));
}
.text-\[\#848484\]{
  --tw-text-opacity: 1;
  color: rgb(132 132 132 / var(--tw-text-opacity, 1));
}
.text-\[\#898989\]{
  --tw-text-opacity: 1;
  color: rgb(137 137 137 / var(--tw-text-opacity, 1));
}
.text-\[\#8D8D8E\]{
  --tw-text-opacity: 1;
  color: rgb(141 141 142 / var(--tw-text-opacity, 1));
}
.text-\[\#8F8F8F\]{
  --tw-text-opacity: 1;
  color: rgb(143 143 143 / var(--tw-text-opacity, 1));
}
.text-\[\#969696\]{
  --tw-text-opacity: 1;
  color: rgb(150 150 150 / var(--tw-text-opacity, 1));
}
.text-\[\#96FF70\]{
  --tw-text-opacity: 1;
  color: rgb(150 255 112 / var(--tw-text-opacity, 1));
}
.text-\[\#9D9D9D\]{
  --tw-text-opacity: 1;
  color: rgb(157 157 157 / var(--tw-text-opacity, 1));
}
.text-\[\#9E9E9E\]{
  --tw-text-opacity: 1;
  color: rgb(158 158 158 / var(--tw-text-opacity, 1));
}
.text-\[\#A6A7B0\]{
  --tw-text-opacity: 1;
  color: rgb(166 167 176 / var(--tw-text-opacity, 1));
}
.text-\[\#BFBFBF\]{
  --tw-text-opacity: 1;
  color: rgb(191 191 191 / var(--tw-text-opacity, 1));
}
.text-\[\#D2D2D2\]{
  --tw-text-opacity: 1;
  color: rgb(210 210 210 / var(--tw-text-opacity, 1));
}
.text-\[\#FBE69D\]{
  --tw-text-opacity: 1;
  color: rgb(251 230 157 / var(--tw-text-opacity, 1));
}
.text-\[\#FF5858\]{
  --tw-text-opacity: 1;
  color: rgb(255 88 88 / var(--tw-text-opacity, 1));
}
.text-\[\#FF953E\]{
  --tw-text-opacity: 1;
  color: rgb(255 149 62 / var(--tw-text-opacity, 1));
}
.text-\[\#FFB100\]{
  --tw-text-opacity: 1;
  color: rgb(255 177 0 / var(--tw-text-opacity, 1));
}
.text-\[\#FFB801\]{
  --tw-text-opacity: 1;
  color: rgb(255 184 1 / var(--tw-text-opacity, 1));
}
.text-\[\#FFDB2E\]{
  --tw-text-opacity: 1;
  color: rgb(255 219 46 / var(--tw-text-opacity, 1));
}
.text-\[\#FFEA9F\]{
  --tw-text-opacity: 1;
  color: rgb(255 234 159 / var(--tw-text-opacity, 1));
}
.text-\[\#b8b8b8\]{
  --tw-text-opacity: 1;
  color: rgb(184 184 184 / var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-grayishBlue{
  --tw-text-opacity: 1;
  color: rgb(166 167 176 / var(--tw-text-opacity, 1));
}
.text-green{
  --tw-text-opacity: 1;
  color: rgb(52 199 89 / var(--tw-text-opacity, 1));
}
.text-greenLight{
  --tw-text-opacity: 1;
  color: rgb(127 223 154 / var(--tw-text-opacity, 1));
}
.text-greyish{
  --tw-text-opacity: 1;
  color: rgb(193 199 205 / var(--tw-text-opacity, 1));
}
.text-mudGrey{
  --tw-text-opacity: 1;
  color: rgb(191 191 191 / var(--tw-text-opacity, 1));
}
.text-primary{
  color: var(--color-primary);
}
.text-red{
  color: var(--color-red);
}
.text-secondary{
  color: var(--color-secondary);
}
.text-transparent{
  color: transparent;
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.opacity-0{
  opacity: 0;
}
.opacity-10{
  opacity: 0.1;
}
.opacity-100{
  opacity: 1;
}
.opacity-45{
  opacity: 0.45;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-80{
  opacity: 0.8;
}
.\!shadow-none{
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.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);
}
.shadow-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  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 !important;
  outline-offset: 2px !important;
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[280px\]{
  --tw-blur: blur(280px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[380px\]{
  --tw-blur: blur(380px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-md{
  --tw-blur: blur(12px);
  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-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  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-1000{
  transition-duration: 1000ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-500{
  transition-duration: 500ms;
}
.duration-75{
  transition-duration: 75ms;
}
.flex-centered{
  display: flex;
  align-items: center;
  justify-content: center;
}
.centered-xy{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
:root {
  --family-primary: 'Rubik', sans-serif;
  --family-secondary: 'Inter', sans-serif;
  --family-gothic: 'Dela Gothic One', sans-serif;

  --color-primary: #a0ff06;
  --color-secondary: #969696;
  --color-white: rgba(255, 255, 255, 0.87);
  --color-green: #34c759;
  --color-red: #dd4b4b;

  --color-warning-500: #ffd95a;

  --color-danger-500: #ef4823;
  --base-font-size: 16px;
  --base-line-height: 1.3;
  --base-spacing: 1rem;

  --app-height: var(--tg-viewport-stable-height);

  padding-top: var(--tg-safe-area-inset-top, --tg-content-safe-area-inset-top);
  padding-bottom: var(--tg-safe-area-inset-bottom, --tg-content-safe-area-inset-bottom);
  padding-left: var(--tg-safe-area-inset-left, --tg-content-safe-area-inset-left);
  padding-right: var(--tg-safe-area-inset-right, --tg-content-safe-area-inset-right);

  body,
  html {
    font-family: var(--family-primary);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);

    box-sizing: border-box;
    background-color: #000;

    color: var(--color-white);

    height: var(--app-height);

    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */

    overflow: hidden;
    padding: 0;
    margin: 0;
  }
}
p {
  line-height: 1.3;
}
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}
/* Prevent text selection and interactions */
.no-select {
  user-select: none; /* Prevents text selection */
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For Internet Explorer/Edge */
}
.scrollable-section {
  overflow-y: auto; /* Enable vertical scrolling for this section */
  height: 100vh; /* Ensure it takes the full viewport height */
  -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
}
.Toastify__toast-theme--dark {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-radius: 12px;
  margin-bottom: 4px;
}
.Toastify__toast-container {
  margin-top: 6rem; /* Default for small screens */
  /* width: fit-content; */
}
@media (min-width: 1024px) {
  .Toastify__toast-container {
    margin-top: 1rem; /* For screens wider than 1024px */
  }
}
.ant-notification-notice-wrapper {
  margin-top: 6rem;
}
@media (min-width: 1024px) {
  .ant-notification-notice-wrapper {
    margin-top: 1rem;
  }
}
input[type='number'].no-spinner::-webkit-outer-spin-button,
input[type='number'].no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Hide number input spinners (Firefox) */
input[type='number'].no-spinner {
  -moz-appearance: textfield;
}
.placeholder\:text-white::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.placeholder\:text-white::placeholder{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:bg-\[\#1C1C1D\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(28 28 29 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#2C2C2D\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(44 44 45 / var(--tw-bg-opacity, 1));
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.active\:bg-\[\#3C3C3D\]:active{
  --tw-bg-opacity: 1;
  background-color: rgb(60 60 61 / var(--tw-bg-opacity, 1));
}
.path-fill\:fill-black>g>g>line{
  fill: #000;
}
.path-fill\:fill-primary>g>g>line{
  fill: var(--color-primary);
}
.path-fill\:fill-white>g>g>line{
  fill: #fff;
}
.path-fill\:fill-black>path{
  fill: #000;
}
.path-fill\:fill-primary>path{
  fill: var(--color-primary);
}
.path-fill\:fill-white>path{
  fill: #fff;
}
.path-fill\:fill-black>g>g>path{
  fill: #000;
}
.path-fill\:fill-primary>g>g>path{
  fill: var(--color-primary);
}
.path-fill\:fill-white>g>g>path{
  fill: #fff;
}
.path-fill\:fill-black>g>g>rect{
  fill: #000;
}
.path-fill\:fill-primary>g>g>rect{
  fill: var(--color-primary);
}
.path-fill\:fill-white>g>g>rect{
  fill: #fff;
}
.path-fill\:fill-black>g>path{
  fill: #000;
}
.path-fill\:fill-primary>g>path{
  fill: var(--color-primary);
}
.path-fill\:fill-white>g>path{
  fill: #fff;
}
.path-fill\:fill-black>g>line{
  fill: #000;
}
.path-fill\:fill-primary>g>line{
  fill: var(--color-primary);
}
.path-fill\:fill-white>g>line{
  fill: #fff;
}
@media (min-width: 370px){
  .sm\:mb-3{
    margin-bottom: 0.75rem;
  }
  .sm\:mb-8{
    margin-bottom: 2rem;
  }
  .sm\:mt-8{
    margin-top: 2rem;
  }
  .sm\:w-28{
    width: 7rem;
  }
  .sm\:w-36{
    width: 9rem;
  }
  .sm\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .sm\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .sm\:py-\[7px\]{
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .sm\:pb-8{
    padding-bottom: 2rem;
  }
  .sm\:text-3xl{
    font-size: 2.063rem;
  }
  .sm\:text-5xl{
    font-size: 3.063rem;
  }
  .sm\:text-lg{
    font-size: 1.125rem;
  }
  .sm\:text-xs{
    font-size: 0.75rem;
  }
  .sm\:text-xxs{
    font-size: 0.625rem;
  }
}
@media (min-width: 400px){
  .md\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .md\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .md\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .md\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .md\:ml-2{
    margin-left: 0.5rem;
  }
  .md\:h-10{
    height: 2.5rem;
  }
  .md\:h-12{
    height: 3rem;
  }
  .md\:max-h-20{
    max-height: 5rem;
  }
  .md\:max-h-60{
    max-height: 15rem;
  }
  .md\:max-h-96{
    max-height: 24rem;
  }
  .md\:w-10{
    width: 2.5rem;
  }
  .md\:w-12{
    width: 3rem;
  }
  .md\:w-30{
    width: 7.5rem;
  }
  .md\:w-48{
    width: 12rem;
  }
  .md\:w-\[125px\]{
    width: 125px;
  }
  .md\:max-w-\[300px\]{
    max-width: 300px;
  }
  .md\:max-w-\[393px\]{
    max-width: 393px;
  }
  .md\:gap-1{
    gap: 0.25rem;
  }
  .md\:gap-2{
    gap: 0.5rem;
  }
  .md\:gap-3{
    gap: 0.75rem;
  }
  .md\:gap-5{
    gap: 1.25rem;
  }
  .md\:rounded-\[2rem\]{
    border-radius: 2rem;
  }
  .md\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .md\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .md\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .md\:px-\[20\%\]{
    padding-left: 20%;
    padding-right: 20%;
  }
  .md\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .md\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .md\:pb-5{
    padding-bottom: 1.25rem;
  }
  .md\:pt-10{
    padding-top: 2.5rem;
  }
  .md\:pt-16{
    padding-top: 4rem;
  }
  .md\:text-2xl{
    font-size: 1.688rem;
  }
  .md\:text-3xl{
    font-size: 2.063rem;
  }
  .md\:text-4xl{
    font-size: 2.5rem;
  }
  .md\:text-5xl{
    font-size: 3.063rem;
  }
  .md\:text-7xl{
    font-size: 3.75rem;
  }
  .md\:text-\[15px\]{
    font-size: 15px;
  }
  .md\:text-\[2\.3rem\]{
    font-size: 2.3rem;
  }
  .md\:text-\[20px\]{
    font-size: 20px;
  }
  .md\:text-\[24px\]{
    font-size: 24px;
  }
  .md\:text-\[28px\]{
    font-size: 28px;
  }
  .md\:text-\[30px\]{
    font-size: 30px;
  }
  .md\:text-base{
    font-size: 1rem;
  }
  .md\:text-lg{
    font-size: 1.125rem;
  }
  .md\:text-sm{
    font-size: 0.875rem;
  }
  .md\:text-xl{
    font-size: 1.25rem;
  }
  .md\:text-xs{
    font-size: 0.75rem;
  }
  .md\:leading-4{
    line-height: 1rem;
  }
  .md\:leading-\[3rem\]{
    line-height: 3rem;
  }
}
@media (min-width: 430px){
  .lg\:max-h-72{
    max-height: 18rem;
  }
  .lg\:max-h-full{
    max-height: 100%;
  }
  .lg\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:pb-1{
    padding-bottom: 0.25rem;
  }
  .lg\:text-xl{
    font-size: 1.25rem;
  }
  .lg\:text-xs{
    font-size: 0.75rem;
  }
}
@media (min-width: 480px){
  .xl\:bottom-20{
    bottom: 5rem;
  }
  .xl\:bottom-8{
    bottom: 2rem;
  }
  .xl\:flex{
    display: flex;
  }
  .xl\:hidden{
    display: none;
  }
  .xl\:h-auto{
    height: auto;
  }
  .xl\:w-\[90\%\]{
    width: 90%;
  }
  .xl\:justify-center{
    justify-content: center;
  }
  .xl\:justify-between{
    justify-content: space-between;
  }
  .xl\:overflow-auto{
    overflow: auto;
  }
  .xl\:rounded-xl{
    border-radius: 0.75rem;
  }
  .xl\:bg-\[\#1C1C1D\]{
    --tw-bg-opacity: 1;
    background-color: rgb(28 28 29 / var(--tw-bg-opacity, 1));
  }
  .xl\:bg-none{
    background-image: none;
  }
  .xl\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .xl\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .xl\:py-\[10\%\]{
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .xl\:pb-12{
    padding-bottom: 3rem;
  }
  .xl\:pb-5{
    padding-bottom: 1.25rem;
  }
  .xl\:pb-9{
    padding-bottom: 2.25rem;
  }
  .xl\:pe-\[30\%\]{
    padding-inline-end: 30%;
  }
  .xl\:pt-7{
    padding-top: 1.75rem;
  }
  .xl\:text-4xl{
    font-size: 2.5rem;
  }
  .xl\:text-lg{
    font-size: 1.125rem;
  }
  .xl\:text-sm{
    font-size: 0.875rem;
  }
}
@media (min-width: 768px){
  .\32xl\:w-\[95vw\]{
    width: 95vw;
  }
}
@media (min-width: 1024px){
  .\33xl\:bottom-6{
    bottom: 1.5rem;
  }
  .\33xl\:left-0{
    left: 0px;
  }
  .\33xl\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .\33xl\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .\33xl\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .\33xl\:mb-5{
    margin-bottom: 1.25rem;
  }
  .\33xl\:ms-0{
    margin-inline-start: 0px;
  }
  .\33xl\:mt-0{
    margin-top: 0px;
  }
  .\33xl\:mt-1{
    margin-top: 0.25rem;
  }
  .\33xl\:mt-10{
    margin-top: 2.5rem;
  }
  .\33xl\:mt-3{
    margin-top: 0.75rem;
  }
  .\33xl\:mt-32{
    margin-top: 8rem;
  }
  .\33xl\:mt-4{
    margin-top: 1rem;
  }
  .\33xl\:mt-5{
    margin-top: 1.25rem;
  }
  .\33xl\:mt-8{
    margin-top: 2rem;
  }
  .\33xl\:block{
    display: block;
  }
  .\33xl\:inline-block{
    display: inline-block;
  }
  .\33xl\:flex{
    display: flex;
  }
  .\33xl\:grid{
    display: grid;
  }
  .\33xl\:hidden{
    display: none;
  }
  .\33xl\:h-10{
    height: 2.5rem;
  }
  .\33xl\:h-14{
    height: 3.5rem;
  }
  .\33xl\:h-20{
    height: 5rem;
  }
  .\33xl\:h-\[95vh\]{
    height: 95vh;
  }
  .\33xl\:h-auto{
    height: auto;
  }
  .\33xl\:h-full{
    height: 100%;
  }
  .\33xl\:h-screen{
    height: 100vh;
  }
  .\33xl\:min-h-min{
    min-height: -moz-min-content;
    min-height: min-content;
  }
  .\33xl\:min-h-screen{
    min-height: 100vh;
  }
  .\33xl\:w-12{
    width: 3rem;
  }
  .\33xl\:w-2{
    width: 0.5rem;
  }
  .\33xl\:w-20{
    width: 5rem;
  }
  .\33xl\:w-\[200px\]{
    width: 200px;
  }
  .\33xl\:w-\[250px\]{
    width: 250px;
  }
  .\33xl\:w-\[500px\]{
    width: 500px;
  }
  .\33xl\:w-full{
    width: 100%;
  }
  .\33xl\:max-w-20{
    max-width: 5rem;
  }
  .\33xl\:max-w-screen-2xl{
    max-width: 768px;
  }
  .\33xl\:max-w-screen-3xl{
    max-width: 1024px;
  }
  .\33xl\:max-w-screen-lg{
    max-width: 430px;
  }
  .\33xl\:max-w-screen-xl{
    max-width: 480px;
  }
  .\33xl\:max-w-xl{
    max-width: 36rem;
  }
  .\33xl\:scale-125{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    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));
  }
  .\33xl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .\33xl\:flex-col{
    flex-direction: column;
  }
  .\33xl\:items-center{
    align-items: center;
  }
  .\33xl\:justify-center{
    justify-content: center;
  }
  .\33xl\:justify-between{
    justify-content: space-between;
  }
  .\33xl\:justify-around{
    justify-content: space-around;
  }
  .\33xl\:gap-12{
    gap: 3rem;
  }
  .\33xl\:gap-2{
    gap: 0.5rem;
  }
  .\33xl\:gap-3{
    gap: 0.75rem;
  }
  .\33xl\:gap-5{
    gap: 1.25rem;
  }
  .\33xl\:gap-x-12{
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .\33xl\:gap-x-9{
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
  .\33xl\:overflow-hidden{
    overflow: hidden;
  }
  .\33xl\:rounded-3xl{
    border-radius: 1.5rem;
  }
  .\33xl\:rounded-lg{
    border-radius: 0.5rem;
  }
  .\33xl\:rounded-xl{
    border-radius: 0.75rem;
  }
  .\33xl\:border{
    border-width: 1px;
  }
  .\33xl\:border-r{
    border-right-width: 1px;
  }
  .\33xl\:border-\[\#373739\]{
    --tw-border-opacity: 1;
    border-color: rgb(55 55 57 / var(--tw-border-opacity, 1));
  }
  .\33xl\:border-green{
    --tw-border-opacity: 1;
    border-color: rgb(52 199 89 / var(--tw-border-opacity, 1));
  }
  .\33xl\:border-primary{
    border-color: var(--color-primary);
  }
  .\33xl\:border-red{
    border-color: var(--color-red);
  }
  .\33xl\:bg-\[\#141414\]{
    --tw-bg-opacity: 1;
    background-color: rgb(20 20 20 / var(--tw-bg-opacity, 1));
  }
  .\33xl\:bg-\[\#1C1C1D\]{
    --tw-bg-opacity: 1;
    background-color: rgb(28 28 29 / var(--tw-bg-opacity, 1));
  }
  .\33xl\:bg-none{
    background-image: none;
  }
  .\33xl\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .\33xl\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .\33xl\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .\33xl\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .\33xl\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .\33xl\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .\33xl\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .\33xl\:py-\[10px\]{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .\33xl\:pb-0{
    padding-bottom: 0px;
  }
  .\33xl\:pb-2{
    padding-bottom: 0.5rem;
  }
  .\33xl\:pb-24{
    padding-bottom: 6rem;
  }
  .\33xl\:pe-0{
    padding-inline-end: 0px;
  }
  .\33xl\:pe-6{
    padding-inline-end: 1.5rem;
  }
  .\33xl\:ps-20{
    padding-inline-start: 5rem;
  }
  .\33xl\:pt-0{
    padding-top: 0px;
  }
  .\33xl\:pt-10{
    padding-top: 2.5rem;
  }
  .\33xl\:pt-2{
    padding-top: 0.5rem;
  }
  .\33xl\:pt-4{
    padding-top: 1rem;
  }
  .\33xl\:pt-5{
    padding-top: 1.25rem;
  }
  .\33xl\:text-left{
    text-align: left;
  }
  .\33xl\:text-3xl{
    font-size: 2.063rem;
  }
  .\33xl\:text-4xl{
    font-size: 2.5rem;
  }
  .\33xl\:text-5xl{
    font-size: 3.063rem;
  }
  .\33xl\:text-\[55px\]{
    font-size: 55px;
  }
  .\33xl\:text-base{
    font-size: 1rem;
  }
  .\33xl\:text-sm{
    font-size: 0.875rem;
  }
  .\33xl\: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;
  }
  .\33xl\:flex-centered{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .\33xl\:centered-xy{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1280px){
  .\34xl\:max-w-2xl{
    max-width: 42rem;
  }
}
@media (min-width: 1580px){
  .\35xl\:max-w-5xl{
    max-width: 64rem;
  }
  .\35xl\:text-4xl{
    font-size: 2.5rem;
  }
  .\35xl\:text-base{
    font-size: 1rem;
  }
}
.\[\&\>circle\]\:fill-primary>circle{
  fill: var(--color-primary);
}
.\[\&\>div\>div\>div\>div\]\:flex-centered>div>div>div>div{
  display: flex;
  align-items: center;
  justify-content: center;
}
.\[\&\>div\>div\>div\>span\>svg\>path\]\:fill-white>div>div>div>span>svg>path{
  fill: #fff;
}
.\[\&\>div\>tc-root\>button\]\:w-full>div>tc-root>button{
  width: 100%;
}
.\[\&\>div\>tc-root\>button\]\:rounded-xl>div>tc-root>button{
  border-radius: 0.75rem;
}
.\[\&\>div\>tc-root\>button\]\:flex-centered>div>tc-root>button{
  display: flex;
  align-items: center;
  justify-content: center;
}
.\[\&\>div\>tc-root\]\:block>div>tc-root{
  display: block;
}
.\[\&\>div\>tc-root\]\:w-48>div>tc-root{
  width: 12rem;
}
.\[\&\>div\>tc-root\]\:w-full>div>tc-root{
  width: 100%;
}
.\[\&\>div\]\:mb-0>div{
  margin-bottom: 0px;
}
.\[\&\>div\]\:flex>div{
  display: flex;
}
.\[\&\>div\]\:min-w-32>div{
  min-width: 8rem;
}
.\[\&\>div\]\:justify-between>div{
  justify-content: space-between;
}
.\[\&\>span\>span\>span\>svg\>path\]\:fill-gray-400>span>span>span>svg>path{
  fill: #9ca3af;
}
.\[\&\>span\>span\>span\>svg\>path\]\:fill-grayishBlue>span>span>span>svg>path{
  fill: #A6A7B0;
}
.\[\&\>svg\>path\]\:fill-\[\#FFDB2E\]>svg>path{
  fill: #FFDB2E;
}
.\[\&\>svg\>path\]\:fill-black>svg>path{
  fill: #000;
}
