@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
#root {
  overflow: auto;
  height: 100dvh;
  width: 100dvw;
  overflow-x: hidden;
}
*::-webkit-scrollbar {
  width: 10px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #555;
}
* #root {
  font-family: "Urbanist", sans-serif;
}
.body {
  background: #F3F8FC;
}
@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 1s linear;
  }
}
.flex-1 {
  flex: 1;
}
.radio-container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
}
/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #eee;
  border-radius: 50%;
  border: 1px solid #717579;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkmark span {
  width: 6.15px;
  height: 6.15px;
  background: #E9F1F8;
  display: none;
  box-shadow: 0px 0px 10px grey;
  border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background: #717579;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark span {
  display: block;
}
/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.react-tooltip {
  z-index: 99;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.min-h-screen {
  min-height: 100vh;
}
.h-screen {
  height: 100vh;
}
.appear {
  animation: appear 1s ease;
}
.flyin-top {
  animation: flyin-top 1s ease;
}
.flyin-bottom {
  animation: flyin-bottom 1s ease;
}
.flyin-right {
  animation: flyin-right 1s ease;
}
.flyin-left {
  animation: flyin-left 1s ease;
}
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes flyin-top {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes flyin-bottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes flyin-right {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes flyin-left {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.skeleton {
  min-height: 12px;
  border-radius: 2px;
  background: rgba(130, 130, 130, 0.2);
  background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
  background-size: 800px 100px;
  animation: wave-lines 2s infinite ease-out;
}
@keyframes wave-lines {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.fallback {
  background-color: transparent !important;
}
a {
  color: unset !important;
}
.landing-container {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1262px) {
  .landing-container {
    width: 100%;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 592px) {
  .landing-container {
    padding: 0px 16px;
  }
}
@media print {
  .print, .print * {
    display: block;
  }
}
.gradient-text {
  background: linear-gradient(0deg, #EE804A, #FF4949);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fr-wrapper {
  word-break: break-all !important;
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
* {
  font-family: "Urbanist", sans-serif;
}
._btn_h73t3_15 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 55px;
  color: #FFF;
  text-align: center;
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.08px;
  filter: drop-shadow(2.2000000477px 3.7840001583px 8.8000001907px rgba(0, 0, 0, 0.1));
}
._btn_h73t3_15:disabled {
  opacity: 0.5;
}._btn_1f6ow_1 {
  border: 1px solid #2F2F2F;
  background: black;
  border-radius: 25px;
  color: snow;
  cursor: pointer;
  font-size: 1em;
  letter-spacing: 0em;
  outline: none;
  padding: 0.75em 2em;
  position: relative;
  text-transform: none;
}
._btn_1f6ow_1::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -2;
  border-radius: 27px;
  background: linear-gradient(90deg, transparent 40%, #9DF5FF 45%, #FFBDFF 55%, transparent 60%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  animation: _lightStrip_1f6ow_1 6s infinite ease-in-out;
}
._btn_1f6ow_1:hover::before {
  filter: blur(40px);
  z-index: 1;
}

@keyframes _lightStrip_1f6ow_1 {
  0%, 100% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0 0;
  }
}
@keyframes _glow_1f6ow_1 {
  0% {
    background: #4477FF;
  }
  25% {
    background: #5588FF;
  }
  100% {
    background: #4477FF;
  }
}._dialog_1owo5_1 {
  overflow-y: auto;
  flex-shrink: 0;
  border-radius: 32px;
  background: radial-gradient(63.19% 63.19% at 50% 0%, #14171A 0%, #070809 100%);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.06);
  padding: 15px 0px;
  color: #717579;
  font-family: Urbanist;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.06px;
  z-index: 2;
  padding: 42px;
  background-color: red;
}
._dialog_1owo5_1::before {
  background: white;
  background: linear-gradient(-45deg, white, black, black, white);
  background: -webkit-linear-gradient(-45deg, white, black, black, white);
  position: absolute;
  top: -0.3px;
  left: -0.3px;
  content: "";
  border-radius: inherit;
  z-index: -1;
  bottom: -0.3px;
  right: -0.3px;
}
._dialog_1owo5_1 ._iconWrapper_1owo5_33 {
  border: 1px solid #FF5851;
  filter: drop-shadow(0px 0px 128px rgba(55, 63, 251, 0.12));
  width: 48.311px;
  height: 48.311px;
  flex-shrink: 0;
  border-radius: 15px;
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
* {
  font-family: "Urbanist", sans-serif;
}
._footer_k2k7b_15 {
  width: 100vw;
  background: radial-gradient(54.36% 54.36% at 50% 0%, #14171A 0%, #070809 100%);
}
._footer__hr_k2k7b_19 {
  border: 1px solid rgba(248, 248, 248, 0.25);
  margin-top: unset;
  margin-bottom: unset;
}
._footer__footer_k2k7b_24 {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16px;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
@media screen and (max-width: 1056px) {
  ._footer__footer_k2k7b_24 {
    flex-direction: column;
  }
  ._footer__footer_k2k7b_24 p {
    text-align: left;
    margin-top: 20px;
  }
}
._footer__content_k2k7b_41 {
  padding-top: 51px !important;
  padding-bottom: 51px !important;
  color: #F4F4F4;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
@media screen and (max-width: 734px) {
  ._footer__content_k2k7b_41 {
    flex-direction: column;
  }
}
._footer__content__logoWrapper_k2k7b_55 {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 734px) {
  ._footer__content__logoWrapper_k2k7b_55 {
    margin-bottom: 40px;
  }
}
._footer__content__logoWrapper_k2k7b_55 ._socials_k2k7b_64 {
  margin-top: 80px;
  display: flex;
  align-items: center;
}
._footer__content__logoWrapper_k2k7b_55 ._socials_k2k7b_64 img {
  margin-right: 20px;
}
._footer__content__linkWrapper_k2k7b_72 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 91px;
  color: #F4F4F4;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 11px;
}
@media screen and (max-width: 1164px) {
  ._footer__content__linkWrapper_k2k7b_72 {
    grid-template-columns: auto auto;
    grid-gap: 50px;
  }
}
@media screen and (max-width: 734px) {
  ._footer__content__linkWrapper_k2k7b_72 {
    grid-template-columns: auto;
    grid-gap: 50px;
    font-size: 14px;
  }
}
._footer__content__linkWrapper_k2k7b_72 strong {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
._footer__content__linkWrapper__item_k2k7b_102 {
  display: grid;
  grid-template-columns: auto;
  grid-row-gap: 11px;
  height: -moz-fit-content;
  height: fit-content;
  padding-left: unset;
  margin-left: unset;
}
._footer__content__linkWrapper__office_k2k7b_110 {
  line-height: 180%;
  padding-left: unset;
  margin-left: unset;
  width: 200px;
}
@media screen and (max-width: 734px) {
  ._footer__content__linkWrapper__office_k2k7b_110 {
    width: 100%;
  }
}
._footer__content__linkWrapper__office_k2k7b_110 ._info_k2k7b_121 {
  margin-top: 17px;
}
._footer__content__linkWrapper__office_k2k7b_110 ._info_k2k7b_121 ._star_k2k7b_124 {
  position: absolute;
  bottom: -10px;
  right: 50px;
}
._footer__logo_k2k7b_129 {
  height: 84px;
}
._footer__whiteFintava_k2k7b_132 {
  height: 40px;
  margin-left: 7px;
}
._footer_k2k7b_15 a {
  color: unset;
}._gradient_1wgwu_1 {
  background: linear-gradient(135deg, hsl(48, 100%, 57%) 0%, hsl(315, 99%, 63%) 51%, hsl(238, 96%, 60%) 100%);
}/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
.pagination {
  width: -moz-fit-content;
  width: fit-content;
  height: 42.56px;
  background: #EEEEEE;
  border-radius: 10px;
}
.pagination .page {
  width: 42.56px;
  height: 42.56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12.5573px;
  color: #FF4750;
  cursor: pointer;
}
.pagination .page.active {
  color: black;
  background: #FFFFFF;
  box-shadow: 0px 4.88339px 11.162px rgba(0, 0, 0, 0.14);
}
.pagination .handle {
  width: 42.56px;
  height: 42.56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .handle.rotate {
  transform: rotate(-180deg);
}
.pagination .handle:hover {
  cursor: pointer;
  background-color: rgba(128, 128, 128, 0.0901960784);
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
.dashboard {
  background-color: #f3f8fc;
  min-height: 100vh;
}
.dashboard .body {
  padding-left: 287.19px;
  padding-right: 105.19px;
}
@media screen and (min-width: 982px) {
  .dashboard .body {
    padding-left: 120px;
    padding-right: 40px;
  }
  .dashboard .body.toggled {
    padding-left: 287.19px;
    padding-right: 105.19px;
  }
}
@media screen and (max-width: 982px) {
  .dashboard .body {
    padding-left: 20px;
    padding-right: 20px;
  }
}/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
.header {
  z-index: 1;
  padding-left: 22px;
  height: 100px;
  display: flex;
  position: sticky;
  top: 0;
  background-color: #f3f8fc;
  align-items: center;
}
@media screen and (max-width: 982px) {
  .header {
    padding-left: unset;
  }
}
.header .hamburger {
  cursor: pointer;
}
.header .title {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  color: #1D1B23;
}
.header .avatar {
  background: #EBECEE;
  border-radius: 19px;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  margin-right: 6px;
  flex-shrink: 0;
}
@media screen and (max-width: 603px) {
  .header .avatar.hidden-sm {
    display: none;
  }
}
.header .avatar.user {
  font-weight: 900;
  background: #E0E4EE;
}
.header .name {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1px;
  color: #697E8D;
  max-width: 180px;
}
@media screen and (max-width: 603px) {
  .header .name {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .header .name {
    max-width: 200px;
  }
}
.header .dropdown-icon-wrapper {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0px;
  outline: 0px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .dropdown-icon-wrapper:hover {
  background-color: rgba(128, 128, 128, 0.0901960784);
  cursor: pointer;
}
.header .toggle-live {
  font-size: 12px;
  color: grey;
}
@media (width < 778px) {
  .header .toggle-live {
    display: none;
  }
}
.mobile-header {
  padding-top: 10px;
  display: flex;
}
@media screen and (min-width: 982px) {
  .mobile-header {
    display: none !important;
  }
  .mobile-header ~ hr {
    display: none;
  }
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
.menu {
  width: 300px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #f3f8fc;
  position: absolute;
  border-radius: 5px;
  right: 0px;
  box-shadow: 0px 31px 60px rgba(85, 85, 85, 0.08);
  padding-inline-start: unset;
  border: 1px solid rgba(128, 128, 128, 0.2784313725);
}
.menu ul {
  list-style-type: none;
  padding-left: unset;
  margin-bottom: unset;
}
.menu ul li:hover {
  background-color: rgba(128, 128, 128, 0.0901960784);
  color: black;
  cursor: pointer;
}
.menu ul .show-sm {
  display: none;
}
@media screen and (max-width: 603px) {
  .menu ul .show-sm {
    display: flex;
  }
}
.menu .menu-name {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1px;
  color: #697E8D;
  max-width: 180px;
}
.menu .toggle-live {
  display: none;
}
@media (width < 778px) {
  .menu .toggle-live {
    display: flex;
  }
}@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes suddle-fly-up {
  from {
    transform: translateY(30px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.custom-modal {
  width: 100dvw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99;
  animation: appear 0.4s ease-in;
}._modal_ei842_1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 549px) {
  ._modal_ei842_1 {
    align-items: flex-end;
  }
}

._dialog_ei842_12 {
  width: 543px;
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  display: flex;
  padding-bottom: 45px;
  flex-direction: column;
  align-items: center;
  animation: 0.4s ease-in-out _flyin-top_ei842_1;
}
@media (width < 549px) {
  ._dialog_ei842_12 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }
}
._dialog_ei842_12 ._noBtn_ei842_29 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  color: #000000;
}
._dialog_ei842_12 ._description_ei842_35 {
  color: #302F2F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  text-align: center;
}
._dialog_ei842_12 ._heading_ei842_44 {
  font-weight: 900;
}
._dialog_ei842_12 ._ctaBtn_ei842_47 {
  margin-top: 50px;
  width: 200px;
  border-radius: 400px !important;
}
._dialog_ei842_12 img {
  height: 200px;
}

@keyframes _flyin-top_ei842_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}._modal_4s9d4_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0px;
  height: 100dvh;
}
@media (width < 549px) {
  ._modal_4s9d4_1 {
    align-items: flex-end;
  }
}

._dialog_4s9d4_14 {
  width: 543px;
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  padding-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 0.4s ease-in-out _flyin-top_4s9d4_1;
}
@media (width < 549px) {
  ._dialog_4s9d4_14 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }
}
._dialog_4s9d4_14 ._noBtn_4s9d4_31 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  color: #000000;
}
._dialog_4s9d4_14 ._description_4s9d4_37 {
  color: #302F2F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  text-align: center;
}
._dialog_4s9d4_14 ._heading_4s9d4_46 {
  font-weight: 900;
}
._dialog_4s9d4_14 ._ctaBtn_4s9d4_49 {
  margin-top: 50px;
  width: 200px;
  border-radius: 400px !important;
}
._dialog_4s9d4_14 img {
  height: 200px;
}

@keyframes _flyin-top_4s9d4_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FF4750;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
.sidebar {
  z-index: 2;
  transition: 0.4s all ease;
  position: fixed;
  height: 100vh;
  background: #f3f8fc;
  box-shadow: 0px 31px 60px rgba(85, 85, 85, 0.08);
  top: 0;
  left: 0;
}
.sidebar .navigation-title {
  display: block;
}
@media screen and (min-width: 982px) {
  .sidebar {
    width: 100px;
  }
  .sidebar .content {
    z-index: 10;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
  }
  .sidebar .content-wrapper {
    width: 100%;
  }
  .sidebar .logo-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .sidebar .logo-container > span:nth-child(2) img {
    width: 70%;
  }
  .sidebar .sidebar-divider {
    display: block;
    border-color: #c7c6c6;
    margin: unset;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .sidebar .navigation-title {
    display: none;
  }
  .sidebar .logout-area {
    padding-top: 51px;
    padding-bottom: 51px;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #D36363;
    justify-content: center;
    display: flex;
    cursor: pointer;
  }
  .sidebar .logout-area span {
    display: none;
  }
}
.sidebar.toggled .content {
  z-index: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.sidebar.toggled .content .sidebar-divider {
  display: none;
}
.sidebar.toggled .content .logo-container {
  flex-direction: row;
  justify-content: flex-start;
}
.sidebar.toggled .content .logo-container > span:nth-child(2) {
  margin-left: 5px;
}
.sidebar.toggled .content .logo-container > span:nth-child(2) img {
  width: unset;
}
.sidebar.toggled .content-wrapper {
  width: 182px;
}
@media screen and (max-width: 982px) {
  .sidebar.toggled .content-wrapper {
    width: 100%;
    padding-left: 20px;
  }
}
.sidebar.toggled .content-wrapper .logo-container {
  height: 100px;
  flex-shrink: 0;
}
.sidebar.toggled .content-wrapper .logout-area {
  padding-top: 51px;
  padding-bottom: 51px;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #D36363;
  cursor: pointer;
}
.sidebar.toggled .content-wrapper .navigation-title {
  display: block;
}
.sidebar.toggled .content-wrapper .logout-area {
  padding-top: 51px;
  padding-bottom: 51px;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  display: flex;
  justify-content: flex-start;
  color: #D36363;
  cursor: pointer;
}
.sidebar.toggled .content-wrapper .logout-area span {
  display: inline;
}
.sidebar.toggled .content-wrapper li {
  justify-content: flex-start !important;
}
.sidebar.toggled .content-wrapper li > div {
  justify-content: flex-start !important;
}
.sidebar .bg-wrapper {
  overflow: hidden;
}
@media screen and (max-width: 982px) {
  .sidebar {
    transform: translateX(-100%);
  }
}
.sidebar.toggled {
  transform: translateX(0%);
  width: 287.19px;
}
.sidebar.toggled .navigation-title {
  display: none;
}
.sidebar .top-background {
  position: absolute;
  top: 0px;
  left: 0px;
}
.sidebar .bottom-background {
  background: linear-gradient(160.85deg, rgba(142, 37, 180, 0.2) -93.15%, rgba(255, 255, 255, 0) 87.11%);
  width: 200px;
  height: 200px;
  border-radius: 80%;
  position: absolute;
  bottom: -100px;
  left: -100px;
  opacity: 0.5;
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
.navigation {
  list-style-type: none;
  margin: unset;
  padding-left: unset;
  overflow: scroll;
  height: 100%;
  scroll-snap-type: proximity;
  scroll-behavior: auto;
}
.navigation li {
  font-size: 14px;
  color: #8597A8;
  background-color: #f3f8fc;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
}
.navigation li .indicator {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  right: 0px;
  top: 0px;
}
.navigation li .indicator span {
  width: 6px;
  height: 32px;
  border-radius: 10px 0px 0px 10px;
}
.navigation li.active {
  color: black;
  font-weight: 600;
  position: sticky;
  top: 0px;
  bottom: 0px;
  box-shadow: 0px 31px 60px rgba(0, 0, 85, 0.08);
}
.navigation li.active .indicator span {
  background-color: #ff4750;
}
.navigation li:first-child {
  margin-top: 0px;
}.alert {
  position: relative;
  padding: 0;
  margin-bottom: 1rem;
  border: none;
  padding: unset !important;
  background: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 0.25rem;
}
.alert.alert-success {
  color: #ffffff;
  background-color: #2dce89;
  border-color: #2dce89;
  box-shadow: 1px 2px 10px rgba(45, 206, 137, 0.67);
}
.alert.alert-danger {
  color: #ffffff;
  background-color: #f5365c;
  border-color: #f5365c;
  box-shadow: 1px 2px 10px rgba(245, 54, 92, 0.67);
}
.alert.alert-info {
  color: #fefefe;
  background-color: #11cdef;
  border-color: #11cdef;
  box-shadow: 1px 2px 10px rgba(17, 205, 239, 0.67);
}
.alert.alert-warning {
  color: #fff;
  background-color: #fb6340;
  border-color: #fb6340;
  box-shadow: 1px 2px 10px rgba(251, 99, 64, 0.67);
}
.alert.alert-dismissible .close {
  position: absolute;
  right: 0;
  font-weight: 300;
  padding: 10px 15px;
  color: inherit;
  background-color: transparent;
  border: none;
  font-size: 1.4rem;
}
.alert.alert-dismissible .close:hover {
  color: black;
  cursor: pointer;
}
.alert .alert-message {
  display: table-cell;
  padding: 20px 15px 20px 15px;
  font-size: 14px;
}
.alert .contrast-alert {
  background-color: rgba(255, 255, 255, 0.2);
}
.alert .alert-icon {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 60px;
  font-size: 20px;
}._modal_dlasy_1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 549px) {
  ._modal_dlasy_1 {
    align-items: flex-end;
  }
}

._confirmation_dlasy_12 {
  width: 543px;
  height: 300px;
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 0.8s _tada_dlasy_1 ease;
}
@media (width < 549px) {
  ._confirmation_dlasy_12 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    animation: _flyin-top_dlasy_1 0.4s ease;
  }
}
._confirmation_dlasy_12 > strong {
  font-size: 24px;
}
._confirmation__desc_dlasy_33 {
  margin-top: 20px;
  text-align: center;
}
._confirmation__desc_dlasy_33 > span {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
._confirmation_dlasy_12 ._noBtn_dlasy_43 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  color: #000000;
}

@keyframes _tada_dlasy_1 {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes _flyin-top_dlasy_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}._modal_dlasy_1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 549px) {
  ._modal_dlasy_1 {
    align-items: flex-end;
  }
}

._confirmation_dlasy_12 {
  width: 543px;
  height: 300px;
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 0.8s _tada_dlasy_1 ease;
}
@media (width < 549px) {
  ._confirmation_dlasy_12 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    animation: _flyin-top_dlasy_1 0.4s ease;
  }
}
._confirmation_dlasy_12 > strong {
  font-size: 24px;
}
._confirmation__desc_dlasy_33 {
  margin-top: 20px;
  text-align: center;
}
._confirmation__desc_dlasy_33 > span {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
._confirmation_dlasy_12 ._noBtn_dlasy_43 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  color: #000000;
}

@keyframes _tada_dlasy_1 {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes _flyin-top_dlasy_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
* {
  font-family: "Urbanist", sans-serif;
}
.inputstyles {
  background: #E1E4ED;
  border-radius: 5px;
  outline: none;
  width: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.inputstyles input:-webkit-autofill {
  -webkit-box-shadow: unset;
}
.inputstyles.hasContent {
  background-color: #ffffff;
  box-shadow: 4px 4px 20px rgba(128, 128, 128, 0.185);
}
.inputstyles.hasContent input:valid {
  background-color: #ffffff;
}
.inputstyles.hasError {
  background: #FFF4F4;
  border: 1px solid #FF0000;
}
.inputstyles.hasError input:valid {
  background: #FFF4F4;
}
.inputstyles input {
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  width: 100%;
  height: 100%;
}
.inputstyles .prefix {
  width: 64px;
  background: #717579;
  height: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inputstyles .suffix {
  width: 64px;
  height: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inputstyles .suffix > div {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inputstyles .suffix > div:hover {
  background-color: rgba(128, 128, 128, 0.0901960784);
  cursor: pointer;
}
.authlabel {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #717579;
  margin-bottom: 11px;
}
.authlabel .required {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #FF4750;
}
.inputErrorMessage {
  color: #FF0000;
  font-size: 12px;
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
.TextArea {
  width: 100%;
}
.TextArea.hasContent textarea {
  background-color: #ffffff;
  box-shadow: 4px 4px 20px rgba(128, 128, 128, 0.185);
}
.TextArea textarea {
  width: 100%;
  padding: 20px;
  outline: none;
}
.authlabel {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #717579;
  margin-bottom: 11px;
}
.authlabel .required {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #FF4750;
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
.DatePicker {
  background: #E1E4ED;
  border-radius: 5px;
  outline: none;
  position: relative;
  flex-shrink: 0;
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
}
.DatePicker.active {
  background-color: #ffffff;
  box-shadow: 4px 4px 20px rgba(128, 128, 128, 0.185);
}
.DatePicker.active input:valid {
  background-color: #ffffff;
}
.DatePicker .ant-picker {
  height: 100% !important;
  display: block;
  width: 100%;
  border: 0px;
  background-color: transparent;
  outline: none;
  border-inline-end-width: 0px;
  box-shadow: unset;
}
.DatePicker .ant-picker .ant-picker-input {
  height: 100%;
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
* {
  font-family: "Urbanist", sans-serif;
}
.form-select-custom .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #717579;
  margin-bottom: 11px;
}
.form-select-custom .label .required {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #FF4750;
}
.form-select-custom .toggler {
  position: relative;
  width: 100%;
  background: #E1E4ED;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #263238;
}
.form-select-custom .toggler > div > img {
  transition: all 0.3s ease;
  transform: rotate(90deg);
}
.form-select-custom .toggler.active {
  background-color: #ffffff;
  box-shadow: 4px 4px 20px rgba(128, 128, 128, 0.185);
}
.form-select-custom .toggler .rotate {
  transform: rotate(0deg);
}
.form-select-custom .dropdown {
  width: 100%;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0px;
  transform: translateY(calc(100% + 0px));
  min-height: 20px;
  border-radius: 5px;
  max-height: 350px;
  padding-left: unset !important;
  z-index: 99;
  overflow-y: auto;
  box-shadow: 4px 4px 20px rgba(128, 128, 128, 0.185);
}
.form-select-custom .dropdown li {
  list-style-type: none;
  border-bottom: 1px solid rgba(190, 190, 191, 0.28);
}
.form-select-custom .dropdown li:hover {
  background-color: rgba(128, 128, 128, 0.0901960784);
}
.form-select-custom .dropdown li.active {
  background-color: #FEF2F2;
}
.form-select-custom .dropdown li.active .dropdown-item-indicator {
  background-color: #FF4750;
}
.form-select-custom .dropdown li .dropdown-item-indicator {
  width: 5px;
  height: 50px;
  border-radius: 0px 5px 5px 0px;
  margin-right: 8px;
}
.form-select-custom .dropdown li:last-child {
  border-bottom: unset;
}.search {
  border: 1px solid #D7D7D7;
  border-radius: 10px;
  height: 55px;
  padding-left: 28px;
  padding-right: 28px;
}
.search input {
  background-color: transparent;
  border: 0px;
  outline: 0px;
}
.search input::-moz-placeholder {
  color: #D7D7D7;
}
.search input::placeholder {
  color: #D7D7D7;
}._main_1eyiy_1 {
  background-color: #F3F8FC;
  min-height: 100dvh;
  display: flex;
}
._main__content_1eyiy_6 {
  width: calc(100vw - 315px - 12px);
}
@media (width < 940px) {
  ._main__content_1eyiy_6 {
    width: calc(100vw - 315px - 24px);
  }
}
@media (width < 931px) {
  ._main__content_1eyiy_6 {
    width: calc(100vw - 12px);
  }
}

._section_1eyiy_20 {
  padding: 24px;
}._header_7jd0z_1 {
  background-color: #f3f8fc;
  padding: 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0px;
  z-index: 1;
}
._header__search_7jd0z_12 {
  width: 698px;
}
@media (width < 1133px) {
  ._header__search_7jd0z_12 {
    width: unset;
    flex: 1;
  }
}
._header__notification_7jd0z_21 {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #717579;
  margin-left: 24px;
}
._header_7jd0z_1 ._ham_7jd0z_29 {
  margin-right: 20px;
  display: none;
}
@media (width < 931px) {
  ._header_7jd0z_1 ._ham_7jd0z_29 {
    display: flex;
  }
}._sidebar_1mzgx_1 {
  width: 315px;
  height: 100dvh;
  flex-shrink: 0;
  background: #F3F8FC;
  box-shadow: 0px 31px 60px 0px rgba(85, 85, 85, 0.08);
  left: 0px;
  position: sticky;
  top: 0px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: all 0.4s ease;
}
@media (width < 931px) {
  ._sidebar_1mzgx_1 {
    position: fixed;
    z-index: 10;
    left: 0px;
    top: 0px;
    transform: translateX(-100%);
  }
  ._sidebar_1mzgx_1._toggled_1mzgx_24 {
    transform: translateX(0%);
  }
}
._sidebar__header_1mzgx_28 {
  padding: 50px 40px;
}
._sidebar__avatar_1mzgx_31 {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #FF4750;
  color: #FFF;
  font-size: 16px;
  font-family: Urbanist;
  font-weight: 600;
}
._sidebar__profile_1mzgx_41 hr {
  opacity: 0.1000000015;
}
._sidebar__name_1mzgx_44 {
  color: #000;
  font-size: 18px;
  font-family: Urbanist;
  font-weight: 600;
}
._sidebar__indicator_1mzgx_50 {
  border-radius: 7px;
  background: #72FFB3;
  width: 7px;
  height: 7px;
  display: inline-block;
  flex-shrink: 0;
}
._sidebar__status_1mzgx_58 {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.6000000238;
  margin-left: 10px;
}
._sidebar_1mzgx_1 ._logout_1mzgx_65 {
  display: flex;
  align-items: center;
  padding: 16px;
  padding-left: 34px;
  cursor: pointer;
}._navigation_6z2ka_1 {
  flex: 1;
  overflow-y: auto;
}
._navigation__list_6z2ka_5 {
  height: 45px;
  flex-shrink: 0;
  border-radius: 5px;
  margin-bottom: 24px;
  list-style: none;
  padding-left: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #717579;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
._navigation__list_6z2ka_5 ._indicator_6z2ka_20 {
  width: 8px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 5px 0px 0px 5px;
}
._navigation__list_6z2ka_5._active_6z2ka_26 {
  position: sticky;
  top: 0px;
  bottom: 0px;
  z-index: 1;
  background: #E0E4EE;
  color: #000;
  font-size: 16px;
  font-family: Urbanist;
  font-weight: 600;
}
._navigation__list_6z2ka_5._active_6z2ka_26 ._indicator_6z2ka_20 {
  background-color: #FF4750;
}._modal_18yva_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
@media (width < 549px) {
  ._modal_18yva_1 {
    align-items: flex-end;
  }
}

._dialog_18yva_13 {
  position: relative;
  width: 543px;
  border-radius: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 0.4s ease-in-out _flyin-top_18yva_1;
  overscroll-behavior: hidden;
}
@media (width < 549px) {
  ._dialog_18yva_13 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }
}
._dialog_18yva_13 ._label_18yva_30 {
  font-size: 12px;
  font-weight: 600;
}
._dialog_18yva_13 ._typeField_18yva_34 {
  background-color: white !important;
  border: 1px solid black;
  height: 35px;
}
._dialog_18yva_13 ._ctaBtn_18yva_39 button {
  width: 100%;
}
._dialog_18yva_13 ._noBtn_18yva_42 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: black;
}
._dialog_18yva_13 ._close_18yva_49 {
  right: 10px;
  top: 10px;
  cursor: pointer;
}

@keyframes _flyin-top_18yva_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}._dialog_1rk16_1 {
  width: 282px;
  max-height: 364px;
  overflow-y: auto;
  flex-shrink: 0;
  border-radius: 5px;
  background: #F3F8FC;
  box-shadow: 0px 1px 5px 0px rgba(91, 91, 91, 0.31);
  position: absolute;
  margin-top: 10px;
  color: #717579;
  font-family: Urbanist;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.06px;
  z-index: 2;
  transform: translateY("-40px");
}
._dialog_1rk16_1 li {
  padding: 6px 36px;
  margin-bottom: 12px;
  cursor: pointer;
}
._dialog_1rk16_1 li:hover {
  background: #E9F1F8;
}
._dialog_1rk16_1 li:last-child {
  margin-top: unset;
}._transactions__topHeader_l67vr_1 {
  margin-bottom: 40px;
}
._transactions__topHeader_l67vr_1 h1 {
  color: #171725;
  text-align: left;
  font-family: Urbanist;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.1px;
}
._transactions__topHeader_l67vr_1 button {
  width: 177px;
}
@media screen and (max-width: 548px) {
  ._transactions__topHeader_l67vr_1 button {
    margin-top: 16px;
    width: 100%;
  }
  ._transactions__topHeader_l67vr_1 {
    flex-direction: column;
  }
}
@media screen and (max-width: 1310px) {
  ._transactions_l67vr_1 ._transaction-header_l67vr_29 {
    flex-direction: column-reverse;
  }
  ._transactions_l67vr_1 ._transaction-header_l67vr_29 ._tab-group_l67vr_32 {
    margin-top: 40px;
  }
  ._transactions_l67vr_1 ._transaction-header_l67vr_29 ._non-tab-content_l67vr_35 {
    width: 100%;
  }
}
._transactions_l67vr_1 ._non-tab-content_l67vr_35 {
  flex: 1;
}
@media screen and (max-width: 611px) {
  ._transactions_l67vr_1 ._non-tab-content_l67vr_35 {
    flex-direction: column;
  }
  ._transactions_l67vr_1 ._non-tab-content_l67vr_35 > div {
    flex: 1;
    width: 100%;
  }
  ._transactions_l67vr_1 ._non-tab-content_l67vr_35 > div:nth-child(2) {
    margin-top: 20px;
  }
  ._transactions_l67vr_1 ._non-tab-content_l67vr_35 > div:nth-child(2) > div:nth-child(1) {
    margin-left: unset !important;
  }
}
._transactions_l67vr_1 ._search-wrapper_l67vr_57 {
  width: auto;
  flex: 1;
}
._transactions_l67vr_1 ._tab-group_l67vr_32 {
  display: flex;
  flex-shrink: 0;
}
._transactions_l67vr_1 ._download-text_l67vr_65 {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #FFFFFF;
}
@media screen and (max-width: 1442px) {
  ._transactions_l67vr_1 ._download-text_l67vr_65 {
    display: none;
  }
}
@media screen and (max-width: 1310px) {
  ._transactions_l67vr_1 ._download-text_l67vr_65 {
    display: block;
  }
}
@media screen and (max-width: 1103px) {
  ._transactions_l67vr_1 ._download-text_l67vr_65 {
    display: none;
  }
}
@media screen and (max-width: 981px) {
  ._transactions_l67vr_1 ._download-text_l67vr_65 {
    display: block;
  }
}
@media screen and (max-width: 739px) {
  ._transactions_l67vr_1 ._download-text_l67vr_65 {
    display: none;
  }
}
@media screen and (max-width: 611px) {
  ._transactions_l67vr_1 ._download-text_l67vr_65 {
    display: block;
  }
}
@media screen and (max-width: 388px) {
  ._transactions_l67vr_1 ._download-text_l67vr_65 {
    display: none;
  }
}
._transactions_l67vr_1 ._filterBtn_l67vr_106 {
  width: 58px;
}
._transactions_l67vr_1 ._configBtns_l67vr_109 {
  display: flex;
  width: 160px;
  height: 55px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.08px;
}
._transactions_l67vr_1 ._configBtns_l67vr_109._active_l67vr_130 {
  background: #FF4750;
  border: unset;
  color: white;
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
.tab {
  list-style-type: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  cursor: pointer;
  color: #717579;
  margin-right: 23px;
}
.tab.active {
  color: #ff4750;
  font-weight: 700;
}
.tab.active .indicator {
  background-color: #ff4750;
}
.tab .indicator {
  width: 44.65px;
  height: 2.79px;
  border-radius: 6.27864px;
  margin-top: 10px;
}
.tab .tab-name {
  text-wrap: nowrap;
}._sort_awxq2_1 {
  width: 160.33px;
  background: #D9D9D9;
  border: 1px solid #000000;
  border-radius: 10px;
  height: 55.34px;
  position: relative;
  cursor: pointer;
}
._sort_awxq2_1 ._text_awxq2_10 {
  font-weight: 500;
  font-size: 16.0016px;
  line-height: 19px;
  color: #1D1B23;
}
._sort_awxq2_1 ._menu_awxq2_16 {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  transform: translateY(calc(100% + 2px));
  max-height: 300px;
  width: 200px;
  background-color: white;
  border-radius: 5px;
  left: 0px;
  overflow-y: auto;
}
._sort_awxq2_1 ._menu_awxq2_16._right_awxq2_28 {
  left: unset;
  right: 0px;
}
._sort_awxq2_1 ._menu_awxq2_16 li, ._sort_awxq2_1 ._menu_awxq2_16 ul {
  padding: 0;
  margin: 0;
}
._sort_awxq2_1 ._menu_awxq2_16 li {
  padding: 10px 20px;
  border-bottom: 1px solid rgb(225, 225, 225);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
._sort_awxq2_1 ._menu_awxq2_16 li:hover {
  background-color: rgba(128, 128, 128, 0.142);
}
._sort_awxq2_1 ._menu_awxq2_16 li:last-child {
  padding: 10px 20px;
  border-bottom: unset;
}._modal_dlasy_1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 549px) {
  ._modal_dlasy_1 {
    align-items: flex-end;
  }
}

._confirmation_dlasy_12 {
  width: 543px;
  height: 300px;
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 0.8s _tada_dlasy_1 ease;
}
@media (width < 549px) {
  ._confirmation_dlasy_12 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    animation: _flyin-top_dlasy_1 0.4s ease;
  }
}
._confirmation_dlasy_12 > strong {
  font-size: 24px;
}
._confirmation__desc_dlasy_33 {
  margin-top: 20px;
  text-align: center;
}
._confirmation__desc_dlasy_33 > span {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
._confirmation_dlasy_12 ._noBtn_dlasy_43 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  color: #000000;
}

@keyframes _tada_dlasy_1 {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes _flyin-top_dlasy_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
* {
  font-family: "Urbanist", sans-serif;
}
.PhoneNumberSelect .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #717579;
  margin-bottom: 11px;
}
.PhoneNumberSelect .label .required {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #FF4750;
}
.PhoneNumberSelect input:-webkit-autofill {
  -webkit-box-shadow: unset;
}
.PhoneNumberSelect .field-wrapper {
  position: relative;
  width: 100%;
  background: #E1E4ED;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #263238;
}
.PhoneNumberSelect .field-wrapper .toggle-icon {
  transition: all 0.3s ease;
  transform: rotate(90deg);
  cursor: pointer;
}
.PhoneNumberSelect .field-wrapper .toggle-icon.rotate {
  transform: rotate(0deg);
}
.PhoneNumberSelect .field-wrapper.active {
  background-color: #ffffff;
  box-shadow: 4px 4px 20px rgba(128, 128, 128, 0.185);
}
.PhoneNumberSelect .field-wrapper.hasContent {
  background-color: #ffffff;
  box-shadow: 4px 4px 20px rgba(128, 128, 128, 0.185);
}
.PhoneNumberSelect .field-wrapper.hasContent input:valid {
  background-color: #ffffff;
}
.PhoneNumberSelect .field-wrapper.hasError {
  background: #FFF4F4;
  border: 1px solid #FF0000;
}
.PhoneNumberSelect .field-wrapper.hasError input:valid {
  background: #FFF4F4;
}
.PhoneNumberSelect .toggler {
  cursor: pointer;
}
.PhoneNumberSelect .country-code {
  border-left: 1px solid rgba(128, 128, 128, 0.23);
  height: 100%;
  margin-left: 20px;
  padding-right: 5px;
}
.PhoneNumberSelect .input {
  width: 100%;
  height: 100%;
}
.PhoneNumberSelect .input input {
  width: 100%;
  height: 100%;
  border: 0px;
  outline: none;
  background-color: transparent;
}
.PhoneNumberSelect .dropdown {
  max-height: 400px;
  overflow: auto;
  z-index: 1;
  width: 100%;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0px;
  transform: translateY(calc(100% + 20px));
  min-height: 20px;
  border-radius: 5px;
  padding-left: unset !important;
  box-shadow: 4px 4px 20px rgba(128, 128, 128, 0.185);
}
.PhoneNumberSelect .dropdown .country-search {
  position: sticky;
  top: 0px;
  background-color: white;
  padding: 10px;
  box-shadow: 0px 0px 10px rgb(192, 192, 192);
}
.PhoneNumberSelect .dropdown li {
  list-style-type: none;
  padding: 16px;
  border-bottom: 1px solid rgba(190, 190, 191, 0.28);
  display: flex;
  align-items: center;
}
.PhoneNumberSelect .dropdown li:hover {
  background-color: rgba(128, 128, 128, 0.0901960784);
  cursor: pointer;
}
.PhoneNumberSelect .dropdown li:last-child {
  border-bottom: unset;
}._createModal_jqp7c_1 {
  overscroll-behavior: none;
  background: #E9F1F8;
  padding: 59px;
  overflow-y: auto;
  animation: 0.4s _flyin-right_jqp7c_1 ease;
}
@media (width < 529px) {
  ._createModal_jqp7c_1 {
    width: 100%;
    padding: 59px 10px;
  }
}
._createModal__header_jqp7c_14 {
  color: #717579;
  font-size: 24px;
  font-family: Urbanist;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-bottom: 1px solid rgba(133, 151, 168, 0.31);
  padding-bottom: 19px;
}
._createModal__form_jqp7c_24 {
  margin-top: 40px;
  display: grid;
  grid-gap: 20px;
}
._createModal_jqp7c_1 ._cancel_jqp7c_29 {
  display: flex;
  height: 55px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  color: #000;
}

@keyframes _flyin-right_jqp7c_1 {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateX(0px);
  }
}._modal_9rtsf_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
@media (width < 549px) {
  ._modal_9rtsf_1 {
    align-items: flex-end;
  }
}

._dialog_9rtsf_13 {
  width: 543px;
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  padding-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 0.4s ease-in-out _flyin-top_9rtsf_1;
}
@media (width < 549px) {
  ._dialog_9rtsf_13 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }
}
._dialog_9rtsf_13 ._noBtn_9rtsf_30 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  color: #000000;
}

@keyframes _flyin-top_9rtsf_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}._copied_19bfo_1 {
  animation: _flyin-out_19bfo_1 0.6s ease-in-out;
}

@keyframes _flyin-out_19bfo_1 {
  from {
    transform: translateY(-100%);
    opacity: 1;
  }
  to {
    transform: translateY(-55px);
    opacity: 0;
  }
}@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
._dashboard_1u1b8_6 {
  margin: auto;
  aspect-ratio: 1/0.3;
  flex-shrink: 0;
  border-radius: 23.556px 23.556px 0px 0px;
  position: relative;
  background-color: red;
}
._dashboard_1u1b8_6::before, ._dashboard_1u1b8_6::after {
  position: absolute;
  content: "";
  top: -0.5px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  transform: translateY(-2px);
  background: hsl(48, 100%, 56%);
  background: conic-gradient(from var(--angle), hsl(48, 100%, 56%), hsl(76, 37%, 64%), hsl(48, 100%, 56%), hsl(318, 100%, 64%), hsl(237, 97%, 60%), hsl(318, 100%, 64%), hsl(48, 100%, 56%), hsl(76, 37%, 64%), hsl(48, 100%, 56%));
  border-radius: inherit;
  animation: _rotation_1u1b8_1 5s linear infinite;
}
@keyframes _rotation_1u1b8_1 {
  0% {
    --angle: 0deg ;
  }
  100% {
    --angle: 360deg ;
  }
}._card_vzoqi_1 {
  border-radius: 6.492px;
  background-color: #f7694f;
}
._card_vzoqi_1::before {
  background: hsl(246, 100%, 77%);
  background: linear-gradient(-45deg, hsl(246, 100%, 77%) 0%, hsl(76, 37%, 64%) 0%, hsl(246, 100%, 77%) 0%, hsl(11, 89%, 64%) 51%, hsl(350, 93%, 82%) 100%);
  background: -webkit-linear-gradient(-45deg, hsl(246, 100%, 77%) 0%, hsl(76, 37%, 64%) 0%, hsl(246, 100%, 77%) 0%, hsl(11, 89%, 64%) 51%, hsl(350, 93%, 82%) 100%);
  position: absolute;
  top: -1px;
  left: -1px;
  content: "";
  border-radius: inherit;
  z-index: -1;
  bottom: -1px;
  right: -1px;
}._advert_50i2q_1 {
  grid-template-columns: 60% auto;
  place-content: center;
}
@media screen and (max-width: 1100px) {
  ._advert_50i2q_1 {
    grid-template-columns: auto;
  }
}._card_1hngf_1 {
  aspect-ratio: 1/0.4;
  box-shadow: 24px 24px 48px 0px rgba(145, 142, 164, 0.29);
}
._card_1hngf_1._left_1hngf_5 {
  animation: 5s _fade-in-left_1hngf_1 linear infinite;
  animation-delay: 1s;
  top: 60%;
}
._card_1hngf_1._right_1hngf_11 {
  animation: 5s _fade-in-right_1hngf_1 linear infinite;
  animation-delay: 1s;
  top: 30%;
}

@keyframes _fade-in-right_1hngf_1 {
  0% {
    top: 100%;
    opacity: 0;
    filter: blur(3.5rem);
  }
  50% {
    top: 30%;
    opacity: 1;
    filter: blur(0rem);
  }
  100% {
    top: 30%;
    opacity: 1;
    filter: blur(0rem);
  }
}
@keyframes _fade-in-left_1hngf_1 {
  0% {
    top: 0%;
    opacity: 0;
    filter: blur(3.5rem);
  }
  50% {
    top: 80%;
    opacity: 1;
    filter: blur(0rem);
  }
  100% {
    top: 80%;
    opacity: 1;
    filter: blur(0rem);
  }
}._card_gtfx8_1 {
  background: var(--a, radial-gradient(50% 50% at 50% 0%, #191D20 0%, #0C0D0F 100%));
}._animateHang_1hjvf_1 {
  animation: 5s _mutate_1hjvf_1 infinite;
  animation-direction: alternate-reverse;
}
@media screen and (max-width: 1024px) {
  ._animateHang_1hjvf_1 {
    animation: unset;
  }
}

@keyframes _mutate_1hjvf_1 {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-20%);
  }
}._card_1qo4f_1 {
  border-radius: 6.492px;
  background: #1d1f21;
  min-height: 454px;
  height: 100%;
}
._card_1qo4f_1::before {
  background: #ED0E0E;
  background: linear-gradient(-45deg, #ED0E0E 0%, hsl(76, 37%, 64%) 0%, #ED0E0E 0%, #1d1f21 51%, #ED0E0E 100%);
  background: -webkit-linear-gradient(-45deg, #ED0E0E 0%, hsl(76, 37%, 64%) 0%, #ED0E0E 0%, #1d1f21 51%, #ED0E0E 100%);
  position: absolute;
  top: -1px;
  left: -1px;
  content: "";
  border-radius: inherit;
  z-index: -1;
  bottom: -1px;
  right: -1px;
}._grid_1mwt7_1 {
  display: grid;
  grid-template-columns: auto;
}
@media screen and (min-width: 1023px) {
  ._grid_1mwt7_1 {
    grid-template-columns: 184px repeat(3, minmax(auto, 352px));
  }
}
@media (max-width: 1023px) and (min-width: 767px) {
  ._grid_1mwt7_1 {
    grid-template-columns: auto auto;
  }
}._tab_1z0l0_1 {
  display: flex;
  width: 332px;
  height: 54px;
  padding: 11.983px 19.173px;
  justify-content: center;
  align-items: center;
  gap: 7.989px;
  border-radius: 25px;
}
._tab_1z0l0_1._active_1z0l0_11 {
  background: linear-gradient(180deg, #EC5657 0%, #EE804A 100%);
}

._container_1z0l0_15 {
  padding: 6px 12px 25px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #131313;
}._card_1n1co_1 {
  border-radius: 30px;
}
._card_1n1co_1._gradient_1n1co_4 {
  background: linear-gradient(180deg, #EE804A 0%, #FF4949 94.27%);
}
._card_1n1co_1._dark_1n1co_7 {
  border: 1px solid #FF437B;
  background: var(--a, radial-gradient(50% 50% at 50% 0%, #191D20 0%, #0C0D0F 100%));
}

._gradientBtn_1n1co_12 {
  border-radius: 25px;
  background: linear-gradient(180deg, #EC5657 0%, #EE804A 100%);
}@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
._card_5m5z2_6 {
  margin: auto;
  aspect-ratio: 1/0.3;
  flex-shrink: 0;
  border-radius: 23px;
  position: relative;
  background-color: black;
  background: radial-gradient(63.19% 63.19% at 50% 0%, #14171A 0%, #070809 100%);
}
._card_5m5z2_6::before, ._card_5m5z2_6::after {
  position: absolute;
  content: "";
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  background: hsl(48, 100%, 56%);
  background: conic-gradient(from var(--angle), hsl(48, 100%, 56%), hsl(76, 37%, 64%), hsl(48, 100%, 56%), hsl(318, 100%, 64%), hsl(237, 97%, 60%), hsl(318, 100%, 64%), hsl(48, 100%, 56%), hsl(76, 37%, 64%), hsl(48, 100%, 56%));
  border-radius: inherit;
  animation: _rotation_5m5z2_1 5s linear infinite;
}

@keyframes _rotation_5m5z2_1 {
  0% {
    --angle: 0deg ;
  }
  100% {
    --angle: 360deg ;
  }
}
._gradientBtn_5m5z2_37 {
  border-radius: 25.564px;
  background: linear-gradient(180deg, #EC5657 0%, #EE804A 100%);
  height: 54px;
}._animateScale_1p0gh_1 {
  animation: 2s _animateScale_1p0gh_1 linear infinite;
  animation-fill-mode: both;
}

@keyframes _animateScale_1p0gh_1 {
  from {
    transform: scale(10%);
  }
  to {
    transform: scale(100%);
  }
}
._hoverShow_1p0gh_14 + div {
  opacity: 0;
  transition: 0.2s ease all;
  transform: rotateZ(-5deg) translateX(100%);
  transform-origin: left;
}
._hoverShow_1p0gh_14:hover + div {
  opacity: 1;
  transform: rotateZ(0deg) translateX(100%);
}

._responsiveScale_1p0gh_25 {
  transform: scale(1);
}
@media only screen and (max-width: 600px) {
  ._responsiveScale_1p0gh_25 {
    transform: scale(0.3);
  }
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
.body {
  background: #f3f8fc;
}._card_1exfl_1 {
  flex-shrink: 0;
  border-radius: 23px;
  position: relative;
  background: radial-gradient(63.19% 63.19% at 50% 0%, #14171A 0%, #070809 100%);
}
._card_1exfl_1::before {
  position: absolute;
  content: "";
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: -1;
  background: white;
  background: linear-gradient(90deg, white, black, white);
  border-radius: inherit;
  animation: _rotation_1exfl_1 5s linear infinite;
}

._gradientBtn_1exfl_21 {
  border-radius: 25px;
  background: linear-gradient(180deg, #EC5657 0%, #EE804A 100%);
}._pill_1n24h_1 {
  border-radius: 37.486px;
  border: 1.171px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  width: 106.49px;
  height: 41.11px;
}@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
._card_5m5z2_6 {
  margin: auto;
  aspect-ratio: 1/0.3;
  flex-shrink: 0;
  border-radius: 23px;
  position: relative;
  background-color: black;
  background: radial-gradient(63.19% 63.19% at 50% 0%, #14171A 0%, #070809 100%);
}
._card_5m5z2_6::before, ._card_5m5z2_6::after {
  position: absolute;
  content: "";
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  background: hsl(48, 100%, 56%);
  background: conic-gradient(from var(--angle), hsl(48, 100%, 56%), hsl(76, 37%, 64%), hsl(48, 100%, 56%), hsl(318, 100%, 64%), hsl(237, 97%, 60%), hsl(318, 100%, 64%), hsl(48, 100%, 56%), hsl(76, 37%, 64%), hsl(48, 100%, 56%));
  border-radius: inherit;
  animation: _rotation_5m5z2_1 5s linear infinite;
}

@keyframes _rotation_5m5z2_1 {
  0% {
    --angle: 0deg ;
  }
  100% {
    --angle: 360deg ;
  }
}
._gradientBtn_5m5z2_37 {
  border-radius: 25.564px;
  background: linear-gradient(180deg, #EC5657 0%, #EE804A 100%);
  height: 54px;
}.transactions {
  padding-left: 22px;
}
@media screen and (max-width: 982px) {
  .transactions {
    padding-left: unset;
  }
}
@media screen and (max-width: 1310px) {
  .transactions .transaction-header {
    flex-direction: column-reverse;
  }
  .transactions .transaction-header .tab-group {
    margin-top: 40px;
  }
  .transactions .transaction-header .non-tab-content {
    width: 100%;
  }
}
.transactions .non-tab-content {
  flex: 1;
}
@media screen and (max-width: 611px) {
  .transactions .non-tab-content {
    flex-direction: column;
  }
  .transactions .non-tab-content > div {
    flex: 1;
    width: 100%;
  }
  .transactions .non-tab-content > div:nth-child(2) {
    margin-top: 20px;
  }
  .transactions .non-tab-content > div:nth-child(2) > div:nth-child(1) {
    margin-left: unset !important;
  }
}
.transactions .tab-group {
  display: flex;
  flex-shrink: 0;
}
.transactions .download-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #FFFFFF;
}
@media screen and (max-width: 1442px) {
  .transactions .download-text {
    display: none;
  }
}
@media screen and (max-width: 1310px) {
  .transactions .download-text {
    display: block;
  }
}
@media screen and (max-width: 1103px) {
  .transactions .download-text {
    display: none;
  }
}
@media screen and (max-width: 981px) {
  .transactions .download-text {
    display: block;
  }
}
@media screen and (max-width: 739px) {
  .transactions .download-text {
    display: none;
  }
}
@media screen and (max-width: 611px) {
  .transactions .download-text {
    display: block;
  }
}
@media screen and (max-width: 388px) {
  .transactions .download-text {
    display: none;
  }
}
.transactions .filterBtn {
  width: 58px;
}._modal_18yva_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
@media (width < 549px) {
  ._modal_18yva_1 {
    align-items: flex-end;
  }
}

._dialog_18yva_13 {
  position: relative;
  width: 543px;
  border-radius: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 0.4s ease-in-out _flyin-top_18yva_1;
  overscroll-behavior: hidden;
}
@media (width < 549px) {
  ._dialog_18yva_13 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }
}
._dialog_18yva_13 ._label_18yva_30 {
  font-size: 12px;
  font-weight: 600;
}
._dialog_18yva_13 ._typeField_18yva_34 {
  background-color: white !important;
  border: 1px solid black;
  height: 35px;
}
._dialog_18yva_13 ._ctaBtn_18yva_39 button {
  width: 100%;
}
._dialog_18yva_13 ._noBtn_18yva_42 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: black;
}
._dialog_18yva_13 ._close_18yva_49 {
  right: 10px;
  top: 10px;
  cursor: pointer;
}

@keyframes _flyin-top_18yva_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}/**
 *  @stylesheet colors.scss colors
 *
 *  Variables
 */
/**
 *  @stylesheet mixins.scss Mixins
 *
 *  Mixins
 */
._modal_8tft5_11 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 549px) {
  ._modal_8tft5_11 {
    align-items: flex-end;
  }
}
._dialog_8tft5_22 {
  width: 564px;
  height: -moz-fit-content;
  height: fit-content;
  background: #E9F1F8;
  padding: 68px 40px;
  max-height: 90%;
  animation: 0.4s ease-in-out _flyin-top_8tft5_1;
}
@media (width < 549px) {
  ._dialog_8tft5_22 {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }
}
._dialog_8tft5_22 ._heading_8tft5_36 {
  color: #29333A;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
._dialog_8tft5_22 ._description_8tft5_43 {
  color: #717579;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
._dialog_8tft5_22 ._ctaBtn_8tft5_50 {
  display: flex;
  width: 134px;
  padding: 17px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
._dialog_8tft5_22 ._noBtn_8tft5_58 {
  border-radius: 10px;
  border: 1px solid #000;
  background: #EFEFEF;
  color: #000000;
  flex-shrink: 0;
}
._dialog_8tft5_22 hr {
  border-top: 1px solid #979797;
}
._dialog_8tft5_22 input {
  display: flex;
  width: clamp(40px, 5vw, 80px);
  height: clamp(40px, 5vw, 80px);
  text-align: center;
  border: 1.5px solid #ff4750;
  outline: none;
  color: #ff4750;
  font-weight: 600;
  font-size: 24px;
  margin-top: 16px;
}
@media only screen and (min-width: 640px) {
  ._dialog_8tft5_22 input {
    margin-inline: 3px;
  }
}
@keyframes _flyin-top_8tft5_1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}._dialog_1kiet_1 {
  width: 528px;
  height: 100vh;
  background-color: #E9F1F8;
  overscroll-behavior: hidden;
  overflow-y: auto;
  padding: 16px;
}
._dialog_1kiet_1 ._header_1kiet_9 {
  margin-bottom: 40px;
}
._dialog_1kiet_1 ._card_1kiet_12 {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
._dialog_1kiet_1 ._txHeader_1kiet_18 {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
}
._dialog_1kiet_1 ._amount_1kiet_25 {
  font-size: 30px;
  font-weight: 700;
}
._dialog_1kiet_1 ._status_1kiet_29 {
  font-weight: 500;
  font-size: 12px;
  color: grey;
}
._dialog_1kiet_1 ._disabledSm_1kiet_34 {
  font-weight: 500;
  color: grey;
  font-size: 14px;
}
._dialog_1kiet_1 ._disabledLg_1kiet_39 {
  font-weight: 500;
  color: grey;
  font-size: 18px;
}
._dialog_1kiet_1 ._normalText_1kiet_44 {
  color: black;
  font-size: 20px;
}._dialog_1kiet_1 {
  width: 528px;
  height: 100vh;
  background-color: #E9F1F8;
  overscroll-behavior: hidden;
  overflow-y: auto;
  padding: 16px;
}
._dialog_1kiet_1 ._header_1kiet_9 {
  margin-bottom: 40px;
}
._dialog_1kiet_1 ._card_1kiet_12 {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
._dialog_1kiet_1 ._txHeader_1kiet_18 {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
}
._dialog_1kiet_1 ._amount_1kiet_25 {
  font-size: 30px;
  font-weight: 700;
}
._dialog_1kiet_1 ._status_1kiet_29 {
  font-weight: 500;
  font-size: 12px;
  color: grey;
}
._dialog_1kiet_1 ._disabledSm_1kiet_34 {
  font-weight: 500;
  color: grey;
  font-size: 14px;
}
._dialog_1kiet_1 ._disabledLg_1kiet_39 {
  font-weight: 500;
  color: grey;
  font-size: 18px;
}
._dialog_1kiet_1 ._normalText_1kiet_44 {
  color: black;
  font-size: 20px;
}._header_ribxz_1 {
  margin-bottom: 40px;
}

._card_ribxz_5 {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
._card_ribxz_5 hr {
  border-color: rgb(194, 194, 194);
}

._txHeader_ribxz_15 {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
}

._amount_ribxz_23 {
  font-size: 30px;
  font-weight: 700;
}

._status_ribxz_28 {
  font-weight: 500;
  font-size: 12px;
  color: grey;
}

._disabledSm_ribxz_34 {
  font-weight: 500;
  color: grey;
  font-size: 14px;
}

._disabledLg_ribxz_40 {
  font-weight: 500;
  color: grey;
  font-size: 18px;
}

._normalText_ribxz_46 {
  color: black;
  font-size: 20px;
}._dialog_1kiet_1 {
  width: 528px;
  height: 100vh;
  background-color: #E9F1F8;
  overscroll-behavior: hidden;
  overflow-y: auto;
  padding: 16px;
}
._dialog_1kiet_1 ._header_1kiet_9 {
  margin-bottom: 40px;
}
._dialog_1kiet_1 ._card_1kiet_12 {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
._dialog_1kiet_1 ._txHeader_1kiet_18 {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
}
._dialog_1kiet_1 ._amount_1kiet_25 {
  font-size: 30px;
  font-weight: 700;
}
._dialog_1kiet_1 ._status_1kiet_29 {
  font-weight: 500;
  font-size: 12px;
  color: grey;
}
._dialog_1kiet_1 ._disabledSm_1kiet_34 {
  font-weight: 500;
  color: grey;
  font-size: 14px;
}
._dialog_1kiet_1 ._disabledLg_1kiet_39 {
  font-weight: 500;
  color: grey;
  font-size: 18px;
}
._dialog_1kiet_1 ._normalText_1kiet_44 {
  color: black;
  font-size: 20px;
}

/*
! tailwindcss v3.4.10 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important;
  }
  .container{
    max-width: 1536px;
  }
}
.\!visible{
  visibility: visible !important;
}
.visible{
  visibility: visible;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-\[0px\]{
  bottom: 0px;
}
.bottom-\[220px\]{
  bottom: 220px;
}
.left-0{
  left: 0px;
}
.left-\[220px\]{
  left: 220px;
}
.left-\[320px\]{
  left: 320px;
}
.left-auto{
  left: auto;
}
.right-0{
  right: 0px;
}
.right-\[-30px\]{
  right: -30px;
}
.right-\[100px\]{
  right: 100px;
}
.right-\[10px\]{
  right: 10px;
}
.right-\[250px\]{
  right: 250px;
}
.right-\[50\%\]{
  right: 50%;
}
.top-0{
  top: 0px;
}
.top-12{
  top: 3rem;
}
.top-\[-40px\]{
  top: -40px;
}
.top-\[120px\]{
  top: 120px;
}
.top-\[200px\]{
  top: 200px;
}
.top-\[49px\]{
  top: 49px;
}
.top-\[90px\]{
  top: 90px;
}
.isolate{
  isolation: isolate;
}
.z-\[-1\]{
  z-index: -1;
}
.z-\[10\]{
  z-index: 10;
}
.z-\[111\]{
  z-index: 111;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[200\]{
  z-index: 200;
}
.z-\[2\]{
  z-index: 2;
}
.z-\[3\]{
  z-index: 3;
}
.z-\[99\]{
  z-index: 99;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.col-span-3{
  grid-column: span 3 / span 3;
}
.col-start-1{
  grid-column-start: 1;
}
.row-span-3{
  grid-row: span 3 / span 3;
}
.row-start-1{
  grid-row-start: 1;
}
.float-right{
  float: right;
}
.m-0{
  margin: 0px;
}
.m-1{
  margin: 0.25rem;
}
.m-auto{
  margin: auto;
}
.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-8{
  margin-left: 2rem;
  margin-right: 2rem;
}
.mx-\[24px\]{
  margin-left: 24px;
  margin-right: 24px;
}
.mx-\[8px\]{
  margin-left: 8px;
  margin-right: 8px;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-0{
  margin-top: 0px;
  margin-bottom: 0px;
}
.my-12{
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.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-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-\[100px\]{
  margin-top: 100px;
  margin-bottom: 100px;
}
.my-\[50px\]{
  margin-top: 50px;
  margin-bottom: 50px;
}
.my-\[8px\]{
  margin-top: 8px;
  margin-bottom: 8px;
}
.my-\[clamp\(24px\2c _4vw\2c _57px\)\]{
  margin-top: clamp(24px, 4vw, 57px);
  margin-bottom: clamp(24px, 4vw, 57px);
}
.mb-0{
  margin-bottom: 0px;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[0px\]{
  margin-bottom: 0px;
}
.mb-\[1\.38rem\]{
  margin-bottom: 1.38rem;
}
.mb-\[100px\]{
  margin-bottom: 100px;
}
.mb-\[140px\]{
  margin-bottom: 140px;
}
.mb-\[25px\]{
  margin-bottom: 25px;
}
.mb-\[40px\]{
  margin-bottom: 40px;
}
.mb-\[8px\]{
  margin-bottom: 8px;
}
.me-2{
  margin-inline-end: 0.5rem;
}
.me-3{
  margin-inline-end: 0.75rem;
}
.ml-0{
  margin-left: 0px;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-5{
  margin-left: 1.25rem;
}
.ml-8{
  margin-left: 2rem;
}
.ml-\[16px\]{
  margin-left: 16px;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mr-48{
  margin-right: 12rem;
}
.mr-5{
  margin-right: 1.25rem;
}
.mr-8{
  margin-right: 2rem;
}
.ms-2{
  margin-inline-start: 0.5rem;
}
.ms-3{
  margin-inline-start: 0.75rem;
}
.ms-5{
  margin-inline-start: 1.25rem;
}
.mt-0{
  margin-top: 0px;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[\.75rem\]{
  margin-top: .75rem;
}
.mt-\[1\.5rem\]{
  margin-top: 1.5rem;
}
.mt-\[11px\]{
  margin-top: 11px;
}
.mt-\[15px\]{
  margin-top: 15px;
}
.mt-\[20px\]{
  margin-top: 20px;
}
.mt-\[240px\]{
  margin-top: 240px;
}
.mt-\[24px\]{
  margin-top: 24px;
}
.mt-\[26px\]{
  margin-top: 26px;
}
.mt-\[27px\]{
  margin-top: 27px;
}
.mt-\[30px\]{
  margin-top: 30px;
}
.mt-\[31px\]{
  margin-top: 31px;
}
.mt-\[33px\]{
  margin-top: 33px;
}
.mt-\[36px\]{
  margin-top: 36px;
}
.mt-\[40px\]{
  margin-top: 40px;
}
.mt-\[41px\]{
  margin-top: 41px;
}
.mt-\[50px\]{
  margin-top: 50px;
}
.mt-\[60px\]{
  margin-top: 60px;
}
.mt-\[62px\]{
  margin-top: 62px;
}
.mt-\[68px\]{
  margin-top: 68px;
}
.mt-\[71px\]{
  margin-top: 71px;
}
.mt-\[7px\]{
  margin-top: 7px;
}
.mt-\[90px\]{
  margin-top: 90px;
}
.mt-\[clamp\(24px\2c _4vw\2c _43\.6px\)\]{
  margin-top: clamp(24px, 4vw, 43.6px);
}
.mt-\[clamp\(80px\2c _4vw\2c _219px\)\]{
  margin-top: clamp(80px, 4vw, 219px);
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.hidden{
  display: none;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.aspect-video{
  aspect-ratio: 16 / 9;
}
.h-12{
  height: 3rem;
}
.h-2{
  height: 0.5rem;
}
.h-6{
  height: 1.5rem;
}
.h-\[100px\]{
  height: 100px;
}
.h-\[150px\]{
  height: 150px;
}
.h-\[166px\]{
  height: 166px;
}
.h-\[174px\]{
  height: 174px;
}
.h-\[17px\]{
  height: 17px;
}
.h-\[18px\]{
  height: 18px;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[200px\]{
  height: 200px;
}
.h-\[20px\]{
  height: 20px;
}
.h-\[220px\]{
  height: 220px;
}
.h-\[24px\]{
  height: 24px;
}
.h-\[26px\]{
  height: 26px;
}
.h-\[28px\]{
  height: 28px;
}
.h-\[299px\]{
  height: 299px;
}
.h-\[2px\]{
  height: 2px;
}
.h-\[30px\]{
  height: 30px;
}
.h-\[32px\]{
  height: 32px;
}
.h-\[34px\]{
  height: 34px;
}
.h-\[350px\]{
  height: 350px;
}
.h-\[36px\]{
  height: 36px;
}
.h-\[39px\]{
  height: 39px;
}
.h-\[400px\]{
  height: 400px;
}
.h-\[40px\]{
  height: 40px;
}
.h-\[42px\]{
  height: 42px;
}
.h-\[44px\]{
  height: 44px;
}
.h-\[48px\]{
  height: 48px;
}
.h-\[4px\]{
  height: 4px;
}
.h-\[50px\]{
  height: 50px;
}
.h-\[52px\]{
  height: 52px;
}
.h-\[54px\]{
  height: 54px;
}
.h-\[55px\]{
  height: 55px;
}
.h-\[56\.34px\]{
  height: 56.34px;
}
.h-\[56px\]{
  height: 56px;
}
.h-\[58\.932px\]{
  height: 58.932px;
}
.h-\[58px\]{
  height: 58px;
}
.h-\[600px\]{
  height: 600px;
}
.h-\[60px\]{
  height: 60px;
}
.h-\[66px\]{
  height: 66px;
}
.h-\[70px\]{
  height: 70px;
}
.h-\[72px\]{
  height: 72px;
}
.h-\[80px\]{
  height: 80px;
}
.h-\[80vh\]{
  height: 80vh;
}
.h-\[85\%\]{
  height: 85%;
}
.h-\[8px\]{
  height: 8px;
}
.h-\[90px\]{
  height: 90px;
}
.h-\[97\.34px\]{
  height: 97.34px;
}
.h-fit{
  height: -moz-fit-content;
  height: fit-content;
}
.h-full{
  height: 100%;
}
.h-screen{
  height: 100vh;
}
.max-h-\[0vh\]{
  max-height: 0vh;
}
.max-h-\[100vh\]{
  max-height: 100vh;
}
.max-h-\[200px\]{
  max-height: 200px;
}
.max-h-\[400px\]{
  max-height: 400px;
}
.max-h-\[457px\]{
  max-height: 457px;
}
.max-h-\[80vh\]{
  max-height: 80vh;
}
.min-h-\[100dvh\]{
  min-height: 100dvh;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[200vh\]{
  min-height: 200vh;
}
.min-h-\[50px\]{
  min-height: 50px;
}
.min-h-\[62px\]{
  min-height: 62px;
}
.min-h-\[90vh\]{
  min-height: 90vh;
}
.min-h-screen{
  min-height: 100vh;
}
.w-20{
  width: 5rem;
}
.w-24{
  width: 6rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\/4{
  width: 75%;
}
.w-48{
  width: 12rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-8\/12{
  width: 66.666667%;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[1200px\]{
  width: 1200px;
}
.w-\[120px\]{
  width: 120px;
}
.w-\[125px\]{
  width: 125px;
}
.w-\[130px\]{
  width: 130px;
}
.w-\[133\.413px\]{
  width: 133.413px;
}
.w-\[133px\]{
  width: 133px;
}
.w-\[150px\]{
  width: 150px;
}
.w-\[159\.37px\]{
  width: 159.37px;
}
.w-\[160px\]{
  width: 160px;
}
.w-\[177px\]{
  width: 177px;
}
.w-\[17px\]{
  width: 17px;
}
.w-\[180px\]{
  width: 180px;
}
.w-\[189px\]{
  width: 189px;
}
.w-\[18px\]{
  width: 18px;
}
.w-\[190px\]{
  width: 190px;
}
.w-\[200px\]{
  width: 200px;
}
.w-\[201px\]{
  width: 201px;
}
.w-\[202px\]{
  width: 202px;
}
.w-\[206px\]{
  width: 206px;
}
.w-\[20px\]{
  width: 20px;
}
.w-\[24px\]{
  width: 24px;
}
.w-\[260px\]{
  width: 260px;
}
.w-\[300px\]{
  width: 300px;
}
.w-\[30px\]{
  width: 30px;
}
.w-\[310px\]{
  width: 310px;
}
.w-\[32px\]{
  width: 32px;
}
.w-\[34px\]{
  width: 34px;
}
.w-\[350px\]{
  width: 350px;
}
.w-\[391px\]{
  width: 391px;
}
.w-\[39px\]{
  width: 39px;
}
.w-\[40\%\]{
  width: 40%;
}
.w-\[400px\]{
  width: 400px;
}
.w-\[40px\]{
  width: 40px;
}
.w-\[50px\]{
  width: 50px;
}
.w-\[55px\]{
  width: 55px;
}
.w-\[5px\]{
  width: 5px;
}
.w-\[60px\]{
  width: 60px;
}
.w-\[65\%\]{
  width: 65%;
}
.w-\[66px\]{
  width: 66px;
}
.w-\[70px\]{
  width: 70px;
}
.w-\[80px\]{
  width: 80px;
}
.w-\[90\%\]{
  width: 90%;
}
.w-\[97px\]{
  width: 97px;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-screen{
  width: 100vw;
}
.min-w-0{
  min-width: 0px;
}
.max-w-\[100\%\]{
  max-width: 100%;
}
.max-w-\[100px\]{
  max-width: 100px;
}
.max-w-\[1011px\]{
  max-width: 1011px;
}
.max-w-\[1116px\]{
  max-width: 1116px;
}
.max-w-\[1160px\]{
  max-width: 1160px;
}
.max-w-\[1199px\]{
  max-width: 1199px;
}
.max-w-\[1200px\]{
  max-width: 1200px;
}
.max-w-\[1289px\]{
  max-width: 1289px;
}
.max-w-\[1328px\]{
  max-width: 1328px;
}
.max-w-\[150px\]{
  max-width: 150px;
}
.max-w-\[159\.5px\]{
  max-width: 159.5px;
}
.max-w-\[180px\]{
  max-width: 180px;
}
.max-w-\[200px\]{
  max-width: 200px;
}
.max-w-\[202px\]{
  max-width: 202px;
}
.max-w-\[250px\]{
  max-width: 250px;
}
.max-w-\[300px\]{
  max-width: 300px;
}
.max-w-\[306px\]{
  max-width: 306px;
}
.max-w-\[375px\]{
  max-width: 375px;
}
.max-w-\[400px\]{
  max-width: 400px;
}
.max-w-\[402px\]{
  max-width: 402px;
}
.max-w-\[404px\]{
  max-width: 404px;
}
.max-w-\[40px\]{
  max-width: 40px;
}
.max-w-\[438px\]{
  max-width: 438px;
}
.max-w-\[457px\]{
  max-width: 457px;
}
.max-w-\[468px\]{
  max-width: 468px;
}
.max-w-\[475px\]{
  max-width: 475px;
}
.max-w-\[488px\]{
  max-width: 488px;
}
.max-w-\[493px\]{
  max-width: 493px;
}
.max-w-\[500px\]{
  max-width: 500px;
}
.max-w-\[515px\]{
  max-width: 515px;
}
.max-w-\[518px\]{
  max-width: 518px;
}
.max-w-\[542px\]{
  max-width: 542px;
}
.max-w-\[550px\]{
  max-width: 550px;
}
.max-w-\[557px\]{
  max-width: 557px;
}
.max-w-\[558px\]{
  max-width: 558px;
}
.max-w-\[645px\]{
  max-width: 645px;
}
.max-w-\[665px\]{
  max-width: 665px;
}
.max-w-\[700px\]{
  max-width: 700px;
}
.max-w-\[760px\]{
  max-width: 760px;
}
.max-w-\[800px\]{
  max-width: 800px;
}
.max-w-\[979px\]{
  max-width: 979px;
}
.max-w-\[991px\]{
  max-width: 991px;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.grow{
  flex-grow: 1;
}
.table-fixed{
  table-layout: fixed;
}
.translate-x-\[-20px\]{
  --tw-translate-x: -20px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-40\%\]{
  --tw-translate-x: -40%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-40px\]{
  --tw-translate-x: -40px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-60\%\]{
  --tw-translate-x: -60%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[00px\]{
  --tw-translate-x: 00px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[20px\]{
  --tw-translate-x: 20px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[40\%\]{
  --tw-translate-x: 40%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[50\%\]{
  --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-x-\[60\%\]{
  --tw-translate-x: 60%;
  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-\[-100\%\]{
  --tw-translate-y: -100%;
  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-\[-100px\]{
  --tw-translate-y: -100px;
  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-\[-20px\]{
  --tw-translate-y: -20px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\]{
  --tw-translate-y: -50%;
  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-\[-6px\]{
  --tw-translate-y: -6px;
  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-\[0px\]{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[10px\]{
  --tw-translate-y: 10px;
  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-\[40px\]{
  --tw-translate-y: 40px;
  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-\[50px\]{
  --tw-translate-y: 50px;
  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-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-150{
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-e-resize{
  cursor: e-resize;
}
.cursor-pointer{
  cursor: pointer;
}
.list-decimal{
  list-style-type: decimal;
}
.list-disc{
  list-style-type: disc;
}
.list-none{
  list-style-type: none;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-6{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-\[450px_auto\]{
  grid-template-columns: 450px auto;
}
.flex-row{
  flex-direction: row;
}
.flex-row-reverse{
  flex-direction: row-reverse;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.place-content-center{
  place-content: center;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-items-center{
  justify-items: center;
}
.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-\[10px\]{
  gap: 10px;
}
.gap-\[125px\]{
  gap: 125px;
}
.gap-\[12px\]{
  gap: 12px;
}
.gap-\[13px\]{
  gap: 13px;
}
.gap-\[16px\]{
  gap: 16px;
}
.gap-\[17px\]{
  gap: 17px;
}
.gap-\[20px\]{
  gap: 20px;
}
.gap-\[22\.723px\]{
  gap: 22.723px;
}
.gap-\[22px\]{
  gap: 22px;
}
.gap-\[24px\]{
  gap: 24px;
}
.gap-\[30px\]{
  gap: 30px;
}
.gap-\[37px\]{
  gap: 37px;
}
.gap-\[40px\]{
  gap: 40px;
}
.gap-\[52px\]{
  gap: 52px;
}
.gap-\[68px\]{
  gap: 68px;
}
.gap-\[71px\]{
  gap: 71px;
}
.gap-\[8px\]{
  gap: 8px;
}
.gap-y-3{
  row-gap: 0.75rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-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));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-\[\.88rem\] > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(.88rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(.88rem * var(--tw-space-y-reverse));
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-visible{
  overflow: visible;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.overflow-y-hidden{
  overflow-y: hidden;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.text-wrap{
  text-wrap: wrap;
}
.break-words{
  overflow-wrap: break-word;
}
.break-all{
  word-break: break-all;
}
.rounded-\[\.25rem\]{
  border-radius: .25rem;
}
.rounded-\[100px\]{
  border-radius: 100px;
}
.rounded-\[10px\]{
  border-radius: 10px;
}
.rounded-\[12px\]{
  border-radius: 12px;
}
.rounded-\[14px\]{
  border-radius: 14px;
}
.rounded-\[15px\]{
  border-radius: 15px;
}
.rounded-\[20\.417px\]{
  border-radius: 20.417px;
}
.rounded-\[200px\]{
  border-radius: 200px;
}
.rounded-\[20px\]{
  border-radius: 20px;
}
.rounded-\[24px\]{
  border-radius: 24px;
}
.rounded-\[25px\]{
  border-radius: 25px;
}
.rounded-\[30px\]{
  border-radius: 30px;
}
.rounded-\[37\.486px\]{
  border-radius: 37.486px;
}
.rounded-\[4px\]{
  border-radius: 4px;
}
.rounded-\[55px\]{
  border-radius: 55px;
}
.rounded-\[5px\]{
  border-radius: 5px;
}
.rounded-\[6\.492px\]{
  border-radius: 6.492px;
}
.rounded-\[7px\]{
  border-radius: 7px;
}
.rounded-\[8px\]{
  border-radius: 8px;
}
.rounded-\[9px\]{
  border-radius: 9px;
}
.rounded-\[inherit\]{
  border-radius: inherit;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-sm{
  border-radius: 0.125rem;
}
.rounded-t-\[32px\]{
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.rounded-bl-\[48px\]{
  border-bottom-left-radius: 48px;
}
.rounded-tr-\[48px\]{
  border-top-right-radius: 48px;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-\[0px\]{
  border-width: 0px;
}
.border-\[1\.171px\]{
  border-width: 1.171px;
}
.border-\[1\.6px\]{
  border-width: 1.6px;
}
.border-\[1px\]{
  border-width: 1px;
}
.border-\[2px\]{
  border-width: 2px;
}
.border-b-\[1px\]{
  border-bottom-width: 1px;
}
.border-b-\[7px\]{
  border-bottom-width: 7px;
}
.border-l-\[1px\]{
  border-left-width: 1px;
}
.border-t-\[1px\]{
  border-top-width: 1px;
}
.border-dashed{
  border-style: dashed;
}
.border-\[\#000000\]{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-\[\#003930\]{
  --tw-border-opacity: 1;
  border-color: rgb(0 57 48 / var(--tw-border-opacity));
}
.border-\[\#0D0F11\]{
  --tw-border-opacity: 1;
  border-color: rgb(13 15 17 / var(--tw-border-opacity));
}
.border-\[\#2F2F2F\]{
  --tw-border-opacity: 1;
  border-color: rgb(47 47 47 / var(--tw-border-opacity));
}
.border-\[\#52667A\]{
  --tw-border-opacity: 1;
  border-color: rgb(82 102 122 / var(--tw-border-opacity));
}
.border-\[\#80808061\]{
  border-color: #80808061;
}
.border-\[\#B3FDF9\]{
  --tw-border-opacity: 1;
  border-color: rgb(179 253 249 / var(--tw-border-opacity));
}
.border-\[\#D0D5DD\]{
  --tw-border-opacity: 1;
  border-color: rgb(208 213 221 / var(--tw-border-opacity));
}
.border-\[\#E0E6EB\]{
  --tw-border-opacity: 1;
  border-color: rgb(224 230 235 / var(--tw-border-opacity));
}
.border-\[\#E2E2E2\]{
  --tw-border-opacity: 1;
  border-color: rgb(226 226 226 / var(--tw-border-opacity));
}
.border-\[\#E5E5E5\]{
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
}
.border-\[\#E5E7EB\]{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-\[\#E6E6E6\]{
  --tw-border-opacity: 1;
  border-color: rgb(230 230 230 / var(--tw-border-opacity));
}
.border-\[\#E9E8E8\]{
  --tw-border-opacity: 1;
  border-color: rgb(233 232 232 / var(--tw-border-opacity));
}
.border-\[\#EAEAEA\]{
  --tw-border-opacity: 1;
  border-color: rgb(234 234 234 / var(--tw-border-opacity));
}
.border-\[\#EE804A\]{
  --tw-border-opacity: 1;
  border-color: rgb(238 128 74 / var(--tw-border-opacity));
}
.border-\[\#F0F2F5\]{
  --tw-border-opacity: 1;
  border-color: rgb(240 242 245 / var(--tw-border-opacity));
}
.border-\[\#F3F4F6\]{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}
.border-\[\#FF0000\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 0 0 / var(--tw-border-opacity));
}
.border-\[\#FF437B\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 67 123 / var(--tw-border-opacity));
}
.border-\[\#FF4750\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 71 80 / var(--tw-border-opacity));
}
.border-\[\#FF7063\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 112 99 / var(--tw-border-opacity));
}
.border-\[\#b5bec4\]{
  --tw-border-opacity: 1;
  border-color: rgb(181 190 196 / var(--tw-border-opacity));
}
.border-\[\#white\]{
  border-color: #white;
}
.border-\[color\:var\(--border-grey\)\]{
  border-color: var(--border-grey);
}
.border-\[green\]{
  --tw-border-opacity: 1;
  border-color: rgb(0 128 0 / var(--tw-border-opacity));
}
.border-\[grey\]{
  --tw-border-opacity: 1;
  border-color: rgb(128 128 128 / var(--tw-border-opacity));
}
.border-\[red\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 0 0 / var(--tw-border-opacity));
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-blue-400{
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity));
}
.border-opacity-\[9\.5px\]{
  --tw-border-opacity: 9.5px;
}
.bg-\[\#0080001a\]{
  background-color: #0080001a;
}
.bg-\[\#08080a\]{
  --tw-bg-opacity: 1;
  background-color: rgb(8 8 10 / var(--tw-bg-opacity));
}
.bg-\[\#110F33\]{
  --tw-bg-opacity: 1;
  background-color: rgb(17 15 51 / var(--tw-bg-opacity));
}
.bg-\[\#23a723\]{
  --tw-bg-opacity: 1;
  background-color: rgb(35 167 35 / var(--tw-bg-opacity));
}
.bg-\[\#26A17B\]{
  --tw-bg-opacity: 1;
  background-color: rgb(38 161 123 / var(--tw-bg-opacity));
}
.bg-\[\#323232\]{
  --tw-bg-opacity: 1;
  background-color: rgb(50 50 50 / var(--tw-bg-opacity));
}
.bg-\[\#730A0A\]{
  --tw-bg-opacity: 1;
  background-color: rgb(115 10 10 / var(--tw-bg-opacity));
}
.bg-\[\#777676\]{
  --tw-bg-opacity: 1;
  background-color: rgb(119 118 118 / var(--tw-bg-opacity));
}
.bg-\[\#80808021\]{
  background-color: #80808021;
}
.bg-\[\#C7DACC\]{
  --tw-bg-opacity: 1;
  background-color: rgb(199 218 204 / var(--tw-bg-opacity));
}
.bg-\[\#D2DEE9\]{
  --tw-bg-opacity: 1;
  background-color: rgb(210 222 233 / var(--tw-bg-opacity));
}
.bg-\[\#E0E4EE\]{
  --tw-bg-opacity: 1;
  background-color: rgb(224 228 238 / var(--tw-bg-opacity));
}
.bg-\[\#E1E4ED\]{
  --tw-bg-opacity: 1;
  background-color: rgb(225 228 237 / var(--tw-bg-opacity));
}
.bg-\[\#E6FEFD\]{
  --tw-bg-opacity: 1;
  background-color: rgb(230 254 253 / var(--tw-bg-opacity));
}
.bg-\[\#E9F1F8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(233 241 248 / var(--tw-bg-opacity));
}
.bg-\[\#F0F0F0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}
.bg-\[\#F0F2FB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 251 / var(--tw-bg-opacity));
}
.bg-\[\#F1BB31\]{
  --tw-bg-opacity: 1;
  background-color: rgb(241 187 49 / var(--tw-bg-opacity));
}
.bg-\[\#F2F2F2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity));
}
.bg-\[\#F3F3F3\]{
  --tw-bg-opacity: 1;
  background-color: rgb(243 243 243 / var(--tw-bg-opacity));
}
.bg-\[\#F3F8FC\;\]{
  background-color: #F3F8FC;;
}
.bg-\[\#F3F8FC\]{
  --tw-bg-opacity: 1;
  background-color: rgb(243 248 252 / var(--tw-bg-opacity));
}
.bg-\[\#F4F4F4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 244 / var(--tw-bg-opacity));
}
.bg-\[\#F9FAFB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-\[\#FAFAFA\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}
.bg-\[\#FAFAFB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 251 / var(--tw-bg-opacity));
}
.bg-\[\#FAFBFC\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 251 252 / var(--tw-bg-opacity));
}
.bg-\[\#FF0000\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 0 0 / var(--tw-bg-opacity));
}
.bg-\[\#FF4750\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 71 80 / var(--tw-bg-opacity));
}
.bg-\[\#FFE5E6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 229 230 / var(--tw-bg-opacity));
}
.bg-\[\#e2e7eb\]{
  --tw-bg-opacity: 1;
  background-color: rgb(226 231 235 / var(--tw-bg-opacity));
}
.bg-\[\#e8ecf2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(232 236 242 / var(--tw-bg-opacity));
}
.bg-\[\#f3f8fc\]{
  --tw-bg-opacity: 1;
  background-color: rgb(243 248 252 / var(--tw-bg-opacity));
}
.bg-\[\#ffa3a337\]{
  background-color: #ffa3a337;
}
.bg-\[black\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-\[color\:var\(--light-grey-4\)\]{
  background-color: var(--light-grey-4);
}
.bg-\[grey\]{
  --tw-bg-opacity: 1;
  background-color: rgb(128 128 128 / var(--tw-bg-opacity));
}
.bg-\[red\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 0 0 / var(--tw-bg-opacity));
}
.bg-\[white\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-base{
  --tw-bg-opacity: 1;
  background-color: rgb(253 83 83 / var(--tw-bg-opacity));
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity));
}
.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity));
}
.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-yellow-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity));
}
.bg-opacity-15{
  --tw-bg-opacity: 0.15;
}
.bg-\[url\(\'\/src\/assets\/backgrounds\/contact-glasmorphism\.png\'\)\]{
  background-image: url('/assets/contact-glasmorphism-f56a4973.png');
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-\[\#EC5657\]{
  --tw-gradient-from: #EC5657 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 86 87 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#EE804A\]{
  --tw-gradient-from: #EE804A var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(238 128 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#EE804A\]{
  --tw-gradient-to: #EE804A var(--tw-gradient-to-position);
}
.to-\[\#FF4949\]{
  --tw-gradient-to: #FF4949 var(--tw-gradient-to-position);
}
.bg-cover{
  background-size: cover;
}
.bg-center{
  background-position: center;
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-fill{
  -o-object-fit: fill;
     object-fit: fill;
}
.p-0{
  padding: 0px;
}
.p-1{
  padding: 0.25rem;
}
.p-12{
  padding: 3rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-8{
  padding: 2rem;
}
.p-\[12px\]{
  padding: 12px;
}
.p-\[16px\]{
  padding: 16px;
}
.p-\[18px\]{
  padding: 18px;
}
.p-\[20px\]{
  padding: 20px;
}
.p-\[24px\]{
  padding: 24px;
}
.p-\[30px\]{
  padding: 30px;
}
.p-\[32px\]{
  padding: 32px;
}
.px-0{
  padding-left: 0px;
  padding-right: 0px;
}
.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-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[\.85rem\]{
  padding-left: .85rem;
  padding-right: .85rem;
}
.px-\[12px\]{
  padding-left: 12px;
  padding-right: 12px;
}
.px-\[154px\]{
  padding-left: 154px;
  padding-right: 154px;
}
.px-\[16px\]{
  padding-left: 16px;
  padding-right: 16px;
}
.px-\[18\.743px\]{
  padding-left: 18.743px;
  padding-right: 18.743px;
}
.px-\[20px\]{
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[24\.346px\]{
  padding-left: 24.346px;
  padding-right: 24.346px;
}
.px-\[30px\]{
  padding-left: 30px;
  padding-right: 30px;
}
.px-\[34px\]{
  padding-left: 34px;
  padding-right: 34px;
}
.px-\[40px\]{
  padding-left: 40px;
  padding-right: 40px;
}
.px-\[90px\]{
  padding-left: 90px;
  padding-right: 90px;
}
.px-\[96px\]{
  padding-left: 96px;
  padding-right: 96px;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[12px\]{
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-\[14\.057px\]{
  padding-top: 14.057px;
  padding-bottom: 14.057px;
}
.py-\[24px\]{
  padding-top: 24px;
  padding-bottom: 24px;
}
.py-\[32\.461px\]{
  padding-top: 32.461px;
  padding-bottom: 32.461px;
}
.py-\[40px\]{
  padding-top: 40px;
  padding-bottom: 40px;
}
.py-\[60px\]{
  padding-top: 60px;
  padding-bottom: 60px;
}
.py-\[62px\]{
  padding-top: 62px;
  padding-bottom: 62px;
}
.py-\[90px\]{
  padding-top: 90px;
  padding-bottom: 90px;
}
.py-\[93px\]{
  padding-top: 93px;
  padding-bottom: 93px;
}
.py-\[clamp\(40px\2c _4vw\2c _95px\)\]{
  padding-top: clamp(40px, 4vw, 95px);
  padding-bottom: clamp(40px, 4vw, 95px);
}
.py-\[clamp\(80px\2c _8vw\2c _186px\)\]{
  padding-top: clamp(80px, 8vw, 186px);
  padding-bottom: clamp(80px, 8vw, 186px);
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-12{
  padding-bottom: 3rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pb-\[135px\]{
  padding-bottom: 135px;
}
.pb-\[274px\]{
  padding-bottom: 274px;
}
.pb-\[32px\]{
  padding-bottom: 32px;
}
.pb-\[40px\]{
  padding-bottom: 40px;
}
.pb-\[80px\]{
  padding-bottom: 80px;
}
.pb-\[clamp\(250px\2c _4vw\2c _334px\)\]{
  padding-bottom: clamp(250px, 4vw, 334px);
}
.pe-3{
  padding-inline-end: 0.75rem;
}
.pl-0{
  padding-left: 0px;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-3{
  padding-left: 0.75rem;
}
.pl-5{
  padding-left: 1.25rem;
}
.pl-\[20px\]{
  padding-left: 20px;
}
.pl-\[clamp\(16px\2c _4vw\2c _120px\)\]{
  padding-left: clamp(16px, 4vw, 120px);
}
.pr-2{
  padding-right: 0.5rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pr-5{
  padding-right: 1.25rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-8{
  padding-top: 2rem;
}
.pt-\[113px\]{
  padding-top: 113px;
}
.pt-\[131px\]{
  padding-top: 131px;
}
.pt-\[clamp\(40px\2c _4vw\2c _110px\)\]{
  padding-top: clamp(40px, 4vw, 110px);
}
.pt-\[clamp\(40px\2c _6vw\2c _112px\)\]{
  padding-top: clamp(40px, 6vw, 112px);
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-justify{
  text-align: justify;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-\[\.55rem\]{
  font-size: .55rem;
}
.text-\[1\.25rem\]{
  font-size: 1.25rem;
}
.text-\[1\.5rem\]{
  font-size: 1.5rem;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[11\.184px\]{
  font-size: 11.184px;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[13px\]{
  font-size: 13px;
}
.text-\[14px\]{
  font-size: 14px;
}
.text-\[15px\]{
  font-size: 15px;
}
.text-\[16px\]{
  font-size: 16px;
}
.text-\[17px\]{
  font-size: 17px;
}
.text-\[18\.85px\]{
  font-size: 18.85px;
}
.text-\[18px\]{
  font-size: 18px;
}
.text-\[1px\]{
  font-size: 1px;
}
.text-\[1rem\]{
  font-size: 1rem;
}
.text-\[20px\]{
  font-size: 20px;
}
.text-\[21px\]{
  font-size: 21px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[26px\]{
  font-size: 26px;
}
.text-\[29\.557px\]{
  font-size: 29.557px;
}
.text-\[32px\]{
  font-size: 32px;
}
.text-\[40px\]{
  font-size: 40px;
}
.text-\[42px\]{
  font-size: 42px;
}
.text-\[45\.578px\]{
  font-size: 45.578px;
}
.text-\[46px\]{
  font-size: 46px;
}
.text-\[56\.667px\]{
  font-size: 56.667px;
}
.text-\[60px\]{
  font-size: 60px;
}
.text-\[9\.974px\]{
  font-size: 9.974px;
}
.text-\[9px\]{
  font-size: 9px;
}
.text-\[clamp\(13px\2c _4vw\2c _18px\)\]{
  font-size: clamp(13px, 4vw, 18px);
}
.text-\[clamp\(14px\2c _4vw\2c _17px\)\]{
  font-size: clamp(14px, 4vw, 17px);
}
.text-\[clamp\(14px\2c _4vw\2c _20px\)\]{
  font-size: clamp(14px, 4vw, 20px);
}
.text-\[clamp\(15px\2c _4vw\2c _20px\)\]{
  font-size: clamp(15px, 4vw, 20px);
}
.text-\[clamp\(18px\2c _4vw\2c _24px\)\]{
  font-size: clamp(18px, 4vw, 24px);
}
.text-\[clamp\(18px\2c _4vw\2c _36px\)\]{
  font-size: clamp(18px, 4vw, 36px);
}
.text-\[clamp\(18px\2c _6vw\2c _36px\)\]{
  font-size: clamp(18px, 6vw, 36px);
}
.text-\[clamp\(24px\2c _4vw\2c _36px\)\]{
  font-size: clamp(24px, 4vw, 36px);
}
.text-\[clamp\(24px\2c _4vw\2c _46px\)\]{
  font-size: clamp(24px, 4vw, 46px);
}
.text-\[clamp\(28px\2c _4vw\2c _44px\)\]{
  font-size: clamp(28px, 4vw, 44px);
}
.text-\[clamp\(30px\2c _6vw\2c _64px\)\]{
  font-size: clamp(30px, 6vw, 64px);
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-\[300\]{
  font-weight: 300;
}
.font-\[400\]{
  font-weight: 400;
}
.font-\[500\]{
  font-weight: 500;
}
.font-\[500px\]{
  font-weight: 500px;
}
.font-\[500x\]{
  font-weight: 500x;
}
.font-\[600\]{
  font-weight: 600;
}
.font-\[700\]{
  font-weight: 700;
}
.font-\[700px\]{
  font-weight: 700px;
}
.font-\[800\]{
  font-weight: 800;
}
.font-\[900\]{
  font-weight: 900;
}
.font-bold{
  font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.leading-8{
  line-height: 2rem;
}
.leading-\[-0\.355px\]{
  line-height: -0.355px;
}
.leading-\[-0\.88px\]{
  line-height: -0.88px;
}
.leading-\[-1\.857px\]{
  line-height: -1.857px;
}
.leading-\[100\%\]{
  line-height: 100%;
}
.leading-\[130\%\]{
  line-height: 130%;
}
.leading-\[1\]{
  line-height: 1;
}
.leading-\[36px\]{
  line-height: 36px;
}
.leading-\[51\.5px\]{
  line-height: 51.5px;
}
.leading-\[clamp\(30px\2c _6vw\2c _60px\)\]{
  line-height: clamp(30px, 6vw, 60px);
}
.tracking-\[-0\.4px\]{
  letter-spacing: -0.4px;
}
.text-\[\#09BD3C\]{
  --tw-text-opacity: 1;
  color: rgb(9 189 60 / var(--tw-text-opacity));
}
.text-\[\#282E33\]{
  --tw-text-opacity: 1;
  color: rgb(40 46 51 / var(--tw-text-opacity));
}
.text-\[\#2C2D33\]{
  --tw-text-opacity: 1;
  color: rgb(44 45 51 / var(--tw-text-opacity));
}
.text-\[\#353D44\]{
  --tw-text-opacity: 1;
  color: rgb(53 61 68 / var(--tw-text-opacity));
}
.text-\[\#40566D\]{
  --tw-text-opacity: 1;
  color: rgb(64 86 109 / var(--tw-text-opacity));
}
.text-\[\#424C55\]{
  --tw-text-opacity: 1;
  color: rgb(66 76 85 / var(--tw-text-opacity));
}
.text-\[\#4D4C61\]{
  --tw-text-opacity: 1;
  color: rgb(77 76 97 / var(--tw-text-opacity));
}
.text-\[\#616A71\]{
  --tw-text-opacity: 1;
  color: rgb(97 106 113 / var(--tw-text-opacity));
}
.text-\[\#667085\]{
  --tw-text-opacity: 1;
  color: rgb(102 112 133 / var(--tw-text-opacity));
}
.text-\[\#717579\]{
  --tw-text-opacity: 1;
  color: rgb(113 117 121 / var(--tw-text-opacity));
}
.text-\[\#78797C\]{
  --tw-text-opacity: 1;
  color: rgb(120 121 124 / var(--tw-text-opacity));
}
.text-\[\#797979\]{
  --tw-text-opacity: 1;
  color: rgb(121 121 121 / var(--tw-text-opacity));
}
.text-\[\#797B85\]{
  --tw-text-opacity: 1;
  color: rgb(121 123 133 / var(--tw-text-opacity));
}
.text-\[\#7E7E7E\]{
  --tw-text-opacity: 1;
  color: rgb(126 126 126 / var(--tw-text-opacity));
}
.text-\[\#8080804a\]{
  color: #8080804a;
}
.text-\[\#8080807f\]{
  color: #8080807f;
}
.text-\[\#808080\]{
  --tw-text-opacity: 1;
  color: rgb(128 128 128 / var(--tw-text-opacity));
}
.text-\[\#808080b8\]{
  color: #808080b8;
}
.text-\[\#85898E\]{
  --tw-text-opacity: 1;
  color: rgb(133 137 142 / var(--tw-text-opacity));
}
.text-\[\#8597A8\]{
  --tw-text-opacity: 1;
  color: rgb(133 151 168 / var(--tw-text-opacity));
}
.text-\[\#94969D\]{
  --tw-text-opacity: 1;
  color: rgb(148 150 157 / var(--tw-text-opacity));
}
.text-\[\#98A2B3\]{
  --tw-text-opacity: 1;
  color: rgb(152 162 179 / var(--tw-text-opacity));
}
.text-\[\#A2A2A2\]{
  --tw-text-opacity: 1;
  color: rgb(162 162 162 / var(--tw-text-opacity));
}
.text-\[\#A7A7A7\]{
  --tw-text-opacity: 1;
  color: rgb(167 167 167 / var(--tw-text-opacity));
}
.text-\[\#AC2020\]{
  --tw-text-opacity: 1;
  color: rgb(172 32 32 / var(--tw-text-opacity));
}
.text-\[\#BCC6D0\]{
  --tw-text-opacity: 1;
  color: rgb(188 198 208 / var(--tw-text-opacity));
}
.text-\[\#E89318\]{
  --tw-text-opacity: 1;
  color: rgb(232 147 24 / var(--tw-text-opacity));
}
.text-\[\#EC5657\]{
  --tw-text-opacity: 1;
  color: rgb(236 86 87 / var(--tw-text-opacity));
}
.text-\[\#ED5A57\]{
  --tw-text-opacity: 1;
  color: rgb(237 90 87 / var(--tw-text-opacity));
}
.text-\[\#EE804A\]{
  --tw-text-opacity: 1;
  color: rgb(238 128 74 / var(--tw-text-opacity));
}
.text-\[\#F15509\]{
  --tw-text-opacity: 1;
  color: rgb(241 85 9 / var(--tw-text-opacity));
}
.text-\[\#FD5353\]{
  --tw-text-opacity: 1;
  color: rgb(253 83 83 / var(--tw-text-opacity));
}
.text-\[\#FF0000\]{
  --tw-text-opacity: 1;
  color: rgb(255 0 0 / var(--tw-text-opacity));
}
.text-\[\#FF4750\]{
  --tw-text-opacity: 1;
  color: rgb(255 71 80 / var(--tw-text-opacity));
}
.text-\[\#FF7B54\]{
  --tw-text-opacity: 1;
  color: rgb(255 123 84 / var(--tw-text-opacity));
}
.text-\[36ox\]{
  color: 36ox;
}
.text-\[400\]{
  color: 400;
}
.text-\[blue\]{
  --tw-text-opacity: 1;
  color: rgb(0 0 255 / var(--tw-text-opacity));
}
.text-\[color\:var\(--primary-color\)\]{
  color: var(--primary-color);
}
.text-\[color\:var\(--secondary\)\]{
  color: var(--secondary);
}
.text-\[grey\]{
  --tw-text-opacity: 1;
  color: rgb(128 128 128 / var(--tw-text-opacity));
}
.text-\[red\]{
  --tw-text-opacity: 1;
  color: rgb(255 0 0 / var(--tw-text-opacity));
}
.text-\[white\]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity));
}
.underline{
  text-decoration-line: underline;
}
.underline-offset-8{
  text-underline-offset: 8px;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-\[10\%\]{
  opacity: 10%;
}
.opacity-\[20\%\]{
  opacity: 20%;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px 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-inner{
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.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-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px 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;
  outline-offset: 2px;
}
.outline{
  outline-style: solid;
}
.blur-\[300px\]{
  --tw-blur: blur(300px);
  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);
}
.invert{
  --tw-invert: invert(100%);
  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;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-linear{
  transition-timing-function: linear;
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\[-\:\.TZ\]{
  -: .TZ;
}
:root {
  --primary-color: #EE804A ;
}
.btn-gradient {
  background-color: #EC5657;
  background-image: linear-gradient(180deg, #EC5657 0%, #EE804A 100%);
}
.btn-off-gradient {
  border: 0.799px solid #2F2F2F;
  background: radial-gradient(50% 50% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}
a {
  text-decoration: none !important;
}
body {
  background: #F3F8FC;
}
.inter {
  font-family: "Inter", sans-serif;
}
.poppins {
  font-family: "Poppins", sans-serif;
}
.ant-pagination-item, .ant-pagination-item-container {
  display: flex !important;
  min-width: 40px !important;
  min-height: 40px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  justify-content: center !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  border-radius: 32px !important;
  border: 1px solid var(--neutral-30, #EBECED) !important;
  background: #FFF !important;
}
.ant-pagination {
  display: flex !important;
}
.ant-pagination-next,
.ant-pagination-prev {
  display: flex !important;
  width: 40px !important;
  height: 40px !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 50% !important;
}
.ant-pagination-prev:hover,
.ant-pagination-prev:active,
.ant-pagination-next:hover,
.ant-pagination-next:active .ant-pagination-item-container {
  background-color: var(--hover-grey);
}
.ant-pagination-item-active {
  min-width: 40px !important;
  min-height: 40px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  background-color: #FD5353 !important;
  border: 0px !important;
}
.ant-pagination-item-active a {
  color: white !important;
}
.ant-pagination-options-quick-jumper input {
  width: 40px !important;
  height: 40px !important;
  border: 1px solid var(--neutral-35, #D8D9DA) !important;
  background: #FFF !important;
  border-radius: unset !important;
}
.ant-picker-ok > button {
  background-color: #FD5353 !important;
  background-image: unset !important;
  color: white !important;
  border: 0px !important;
}
.ant-picker-ok > button:hover {
  background-color: #F32525 !important;
}
.ant-picker-year-btn, .ant-picker-month-btn {
  background-color: transparent !important;
  color: black !important;
}
.ant-picker-now {
  padding-inline: 5px;
  background: #FD5353 !important;
  color: white !important;
  border-radius: 4px;
}
.ant-picker-cell-selected > div {
  background-color: #FD5353 !important;
  color: white !important;
  border: 0px !important;
}
.landing-wave-bg {
  background-image: url(/assets/landing-bg-e1a435ff.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}
.fly-in {
  animation: suddle-fly-up 0.3s ease-in;
}
.hover\:z-10:hover{
  z-index: 10;
}
.hover\:rotate-\[-4deg\]:hover{
  --tw-rotate: -4deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:rotate-\[4deg\]:hover{
  --tw-rotate: 4deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[105\%\]:hover{
  --tw-scale-x: 105%;
  --tw-scale-y: 105%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[120\%\]:hover{
  --tw-scale-x: 120%;
  --tw-scale-y: 120%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:bg-\[\#8080800d\]:hover{
  background-color: #8080800d;
}
.hover\:bg-\[\#80808022\]:hover{
  background-color: #80808022;
}
.hover\:bg-\[\#80808025\]:hover{
  background-color: #80808025;
}
.hover\:bg-\[\#8080802b\]:hover{
  background-color: #8080802b;
}
.hover\:bg-\[\#E0E4EE\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(224 228 238 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#F1BB31\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(241 187 49 / var(--tw-bg-opacity));
}
.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
@media (min-width: 640px){
  .sm\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .sm\:mx-\[48px\]{
    margin-left: 48px;
    margin-right: 48px;
  }
  .sm\:mb-\[50px\]{
    margin-bottom: 50px;
  }
  .sm\:ml-3{
    margin-left: 0.75rem;
  }
  .sm\:mt-0{
    margin-top: 0px;
  }
  .sm\:mt-\[24px\]{
    margin-top: 24px;
  }
  .sm\:mt-\[50px\]{
    margin-top: 50px;
  }
  .sm\:block{
    display: block;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:h-\[120px\]{
    height: 120px;
  }
  .sm\:h-\[246\.41px\]{
    height: 246.41px;
  }
  .sm\:h-\[60px\]{
    height: 60px;
  }
  .sm\:h-full{
    height: 100%;
  }
  .sm\:w-\[222px\]{
    width: 222px;
  }
  .sm\:w-\[286\.27px\]{
    width: 286.27px;
  }
  .sm\:w-\[600px\]{
    width: 600px;
  }
  .sm\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }
  .sm\:max-w-\[428px\]{
    max-width: 428px;
  }
  .sm\:max-w-\[60\%\]{
    max-width: 60%;
  }
  .sm\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-\[200px_auto\]{
    grid-template-columns: 200px auto;
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:\!flex-col{
    flex-direction: column !important;
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:gap-0{
    gap: 0px;
  }
  .sm\:gap-\[24px\]{
    gap: 24px;
  }
  .sm\:rounded-\[20px\]{
    border-radius: 20px;
  }
  .sm\:border-\[0px\]{
    border-width: 0px;
  }
  .sm\:border-r-\[1px\]{
    border-right-width: 1px;
  }
  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .sm\:pb-0{
    padding-bottom: 0px;
  }
  .sm\:text-\[14px\]{
    font-size: 14px;
  }
  .sm\:text-\[16px\]{
    font-size: 16px;
  }
  .sm\:text-\[18px\]{
    font-size: 18px;
  }
  .sm\:text-\[24px\]{
    font-size: 24px;
  }
  .sm\:text-\[50px\]{
    font-size: 50px;
  }
}
@media (min-width: 768px){
  .md\:absolute{
    position: absolute;
  }
  .md\:relative{
    position: relative;
  }
  .md\:bottom-\[-20px\]{
    bottom: -20px;
  }
  .md\:top-0{
    top: 0px;
  }
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:col-start-2{
    grid-column-start: 2;
  }
  .md\:mb-\[100px\]{
    margin-bottom: 100px;
  }
  .md\:ml-3{
    margin-left: 0.75rem;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:mt-\[21px\]{
    margin-top: 21px;
  }
  .md\:flex{
    display: flex;
  }
  .md\:grid{
    display: grid;
  }
  .md\:h-\[200px\]{
    height: 200px;
  }
  .md\:h-\[42px\]{
    height: 42px;
  }
  .md\:h-\[84px\]{
    height: 84px;
  }
  .md\:h-full{
    height: 100%;
  }
  .md\:min-h-\[100dvh\]{
    min-height: 100dvh;
  }
  .md\:min-h-\[361px\]{
    min-height: 361px;
  }
  .md\:w-\[200px\]{
    width: 200px;
  }
  .md\:w-\[414px\]{
    width: 414px;
  }
  .md\:w-\[726px\]{
    width: 726px;
  }
  .md\:w-\[auto\]{
    width: auto;
  }
  .md\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }
  .md\:max-w-\[358px\]{
    max-width: 358px;
  }
  .md\:max-w-\[448px\]{
    max-width: 448px;
  }
  .md\:max-w-\[500px\]{
    max-width: 500px;
  }
  .md\:flex-none{
    flex: none;
  }
  .md\:translate-y-\[100\%\]{
    --tw-translate-y: 100%;
    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));
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-center{
    justify-content: center;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-\[40px\]{
    gap: 40px;
  }
  .md\:space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .md\:rounded-\[32px\]{
    border-radius: 32px;
  }
  .md\:p-3{
    padding: 0.75rem;
  }
  .md\:p-8{
    padding: 2rem;
  }
  .md\:p-\[22px\]{
    padding: 22px;
  }
  .md\:p-\[24px\]{
    padding: 24px;
  }
  .md\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .md\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .md\:px-\[20px\]{
    padding-left: 20px;
    padding-right: 20px;
  }
  .md\:px-\[22px\]{
    padding-left: 22px;
    padding-right: 22px;
  }
  .md\:px-\[25px\]{
    padding-left: 25px;
    padding-right: 25px;
  }
  .md\:px-\[40px\]{
    padding-left: 40px;
    padding-right: 40px;
  }
  .md\:pl-5{
    padding-left: 1.25rem;
  }
  .md\:pt-0{
    padding-top: 0px;
  }
  .md\:text-\[\.75rem\]{
    font-size: .75rem;
  }
  .md\:text-\[1\.25rem\]{
    font-size: 1.25rem;
  }
  .md\:text-\[12px\]{
    font-size: 12px;
  }
  .md\:text-\[14px\]{
    font-size: 14px;
  }
  .md\:text-\[16px\]{
    font-size: 16px;
  }
  .md\:text-\[18px\]{
    font-size: 18px;
  }
  .md\:text-\[20px\]{
    font-size: 20px;
  }
  .md\:text-\[24px\]{
    font-size: 24px;
  }
  .md\:text-\[36px\]{
    font-size: 36px;
  }
  .md\:first-letter\:sticky::first-letter{
    position: sticky;
  }
}
@media (min-width: 1024px){
  .lg\:absolute{
    position: absolute;
  }
  .lg\:relative{
    position: relative;
  }
  .lg\:left-\[6\.5\%\]{
    left: 6.5%;
  }
  .lg\:left-\[72\%\]{
    left: 72%;
  }
  .lg\:left-\[75\%\]{
    left: 75%;
  }
  .lg\:top-0{
    top: 0px;
  }
  .lg\:top-\[50\%\]{
    top: 50%;
  }
  .lg\:z-0{
    z-index: 0;
  }
  .lg\:z-\[-1\]{
    z-index: -1;
  }
  .lg\:mx-\[114px\]{
    margin-left: 114px;
    margin-right: 114px;
  }
  .lg\:my-\[100px\]{
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .lg\:my-\[200px\]{
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .lg\:mb-\[200px\]{
    margin-bottom: 200px;
  }
  .lg\:ml-3{
    margin-left: 0.75rem;
  }
  .lg\:mt-0{
    margin-top: 0px;
  }
  .lg\:mt-\[43px\]{
    margin-top: 43px;
  }
  .lg\:mt-\[46px\]{
    margin-top: 46px;
  }
  .lg\:mt-\[56px\]{
    margin-top: 56px;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-\[120px\]{
    height: 120px;
  }
  .lg\:h-\[535px\]{
    height: 535px;
  }
  .lg\:h-\[600px\]{
    height: 600px;
  }
  .lg\:h-fit{
    height: -moz-fit-content;
    height: fit-content;
  }
  .lg\:w-\[1000\.266px\]{
    width: 1000.266px;
  }
  .lg\:w-\[1000px\]{
    width: 1000px;
  }
  .lg\:w-\[1071px\]{
    width: 1071px;
  }
  .lg\:w-\[356px\]{
    width: 356px;
  }
  .lg\:w-\[604px\]{
    width: 604px;
  }
  .lg\:w-\[614px\]{
    width: 614px;
  }
  .lg\:w-\[740px\]{
    width: 740px;
  }
  .lg\:w-\[747px\]{
    width: 747px;
  }
  .lg\:w-\[762px\]{
    width: 762px;
  }
  .lg\:w-\[779px\]{
    width: 779px;
  }
  .lg\:w-\[837px\]{
    width: 837px;
  }
  .lg\:w-\[928px\]{
    width: 928px;
  }
  .lg\:w-\[973\.533px\]{
    width: 973.533px;
  }
  .lg\:w-auto{
    width: auto;
  }
  .lg\:min-w-\[60\%\]{
    min-width: 60%;
  }
  .lg\:max-w-full{
    max-width: 100%;
  }
  .lg\:flex-1{
    flex: 1 1 0%;
  }
  .lg\:translate-y-0{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:rotate-\[-4deg\]{
    --tw-rotate: -4deg;
    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));
  }
  .lg\:rotate-\[4deg\]{
    --tw-rotate: 4deg;
    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));
  }
  .lg\:scale-\[85\%\]{
    --tw-scale-x: 85%;
    --tw-scale-y: 85%;
    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));
  }
  .lg\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:items-center{
    align-items: center;
  }
  .lg\:gap-\[111px\]{
    gap: 111px;
  }
  .lg\:gap-\[40px\]{
    gap: 40px;
  }
  .lg\:bg-transparent{
    background-color: transparent;
  }
  .lg\:p-0{
    padding: 0px;
  }
  .lg\:p-12{
    padding: 3rem;
  }
  .lg\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:px-\[112px\]{
    padding-left: 112px;
    padding-right: 112px;
  }
  .lg\:px-\[71px\]{
    padding-left: 71px;
    padding-right: 71px;
  }
  .lg\:py-\[133px\]{
    padding-top: 133px;
    padding-bottom: 133px;
  }
  .lg\:text-\[14px\]{
    font-size: 14px;
  }
  .lg\:text-\[16px\]{
    font-size: 16px;
  }
  .lg\:text-\[18px\]{
    font-size: 18px;
  }
  .lg\:text-\[24px\]{
    font-size: 24px;
  }
  .lg\:text-\[76px\]{
    font-size: 76px;
  }
  .lg\:text-black{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
  }
  .lg\: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);
  }
}
@media (min-width: 1280px){
  .xl\:mx-\[14\.5px\]{
    margin-left: 14.5px;
    margin-right: 14.5px;
  }
  .xl\:ml-\[-110px\]{
    margin-left: -110px;
  }
  .xl\:block{
    display: block;
  }
  .xl\:w-\[1087\.19px\]{
    width: 1087.19px;
  }
  .xl\:w-\[1113px\]{
    width: 1113px;
  }
  .xl\:w-\[1240px\]{
    width: 1240px;
  }
  .xl\:max-w-\[629px\]{
    max-width: 629px;
  }
  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:flex-row{
    flex-direction: row;
  }
}