.YR6LCm {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mkZvem {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}@font-face {
  font-family: "Montserrat";
  src: url("./Montserrat-VF.D-xo5pT6.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("./Geologica-VF.Cs83crvP.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --background-color: #fdfdfd;
  --container-color: #fff;
  --container-shadow-color: #eee;
  --container-border-color: #ededed;
  --main-color: #00d19f;
  --main-color-lighten: #00d19f1c;
  --main-hover-color: #00c294;
  --header-color: #000;
  --text-color: #929292;
  --filename-color: #000;
  --secondary-button-color: #000;
  --secondary-button-background: #eee;
  --secondary-button-hover-color: #fff;
  --secondary-button-hover-background: #000;
  --button-disabled-color: #bbb;
  --button-disabled-background: #eee;
  --reason-button-background: #f1f1f1;
  --reason-textarea-background: #f1f1f1;
  --reason-textarea-color: #000;
  --input-disabled-color: #ddd;
  --input-color: #000;
  --input-border-color: #929292;
  --error-color: #f22424;
  --footer-background: #fafafa;
  --decline-color: #f22424;
  --decline-background: #f2242425;
  --scrollbar-color: #000;
  --scrollbar-background: #efefef;
}

:root {
  --default-button-color: #fff;
  --link-color: #00a9ff;
  --hover-background: #00c597;
  --light-background: #f5f5f5;
  --lighter-background: #e9e9e9;
  --tooltip-background: #d1fff4;
  --tooltip-trigger-background: hsla(166, 100%, 41%, 0.15);
  --disabled-text: #bbb;
  --modal-backdrop: #00000091;
  --modal-border: #eee;
  --modal-shadow: #00000014;
  --toggle-background: #ccc;
  --analytics-background: rgba(15, 171, 255, 0.15);
  --analytics-background-lighten: rgba(15, 171, 255, 0.07);
  --header-border-color: #e7e7e7;
  --header-shadow-color: rgba(0, 0, 0, 0.03);
  --header-background: #ffffffe8;
  --dropdown-border-color: #d9d9d9;
  --dropdown-hover-background: #f9f9f9;
  --mobile-menu-background: #00000043;
  --profile-background: #eee;
  --profile-border-color: #ccc;
  --suspicious-activity-background: #ebf2ff;
  --suspicious-activity-text: #3f91dd;
  --recovery-success-background: #e9fbf7;
  --decline-hover-background: #f2242438;
  --promobanner-gradient-start: rgba(2, 0, 36, 0);
  --promobanner-button-hover: #ffce65;
  --promobanner-main-hover: #fee17d;
  --promobanner-secondary-hover: #ffce65;
}

body {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
  background: var(--background-color);
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0;
  justify-content: center;
  color: var(--header-color);
}

#app-render {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

button {
  cursor: pointer;
  appearance: none;
  border: unset;
  background: unset;
  color: unset;
  font-size: unset;
  font: unset;
  display: unset;
  white-space: nowrap;
}
button:disabled {
  background: var(--button-disabled-background);
  border-color: var(--button-disabled-background);
  color: var(--button-disabled-color);
  cursor: not-allowed;
}
button:disabled:hover {
  background: var(--button-disabled-background);
  color: var(--button-disabled-color);
  border-color: var(--button-disabled-background);
}

.loader {
  width: 20px;
  margin-left: 10px;
  align-self: center;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, var(--button-disabled-color) 90%, transparent);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
::selection {
  color: white;
  background: var(--main-color);
}

:root::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: var(--background-color);
}
:root::-webkit-scrollbar-thumb {
  background: var(--main-color);
  width: 8px;
  height: 240px;
  border-radius: 15px;
  border: 1px solid var(--background-color);
}
:root::-webkit-scrollbar-thumb:hover {
  background-color: color-mix(in srgb, var(--main-color) 80%, black);
}

.banks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 364px;
  margin: 0 auto;
}

.tbankbutton-settings button {
  width: 255px;
  height: 48px;
  border-radius: 12px;
}

.onboarding-tbankbutton button,
.tbank-button button,
.tbankbutton-invite button {
  width: 100%;
  height: 48px;
  border-radius: 12px;
}

.alfa-button button,
.onboarding-alfabutton button,
.alfabutton-settings button,
.alfabutton-invite button {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: #ef3124;
  color: white;
  font-size: 14px;
  gap: 8px;
}
.alfa-button button:hover,
.onboarding-alfabutton button:hover,
.alfabutton-settings button:hover,
.alfabutton-invite button:hover {
  background-color: #e32a17;
}
.alfa-button button:active,
.onboarding-alfabutton button:active,
.alfabutton-settings button:active,
.alfabutton-invite button:active {
  background-color: #d72505;
  transform: scale(0.97);
}

.missing_email_error_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

input {
  font-family: inherit;
}.dy5UN6 {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 5px 5px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px 0 rgba(82, 92, 122, 0.2);
  background-color: #fff;
  opacity: 0;
  z-index: -1;
  transition: z-index 0.2s ease-out, opacity 0.2s ease-out, transform 0.2s ease-out;
}
.dy5UN6.I9VXHd {
  opacity: 1;
  z-index: 2000;
  transform: translateX(-50%) translateY(-20px);
  transition-delay: 0.2s;
}

.V4O9WV {
  margin-right: 15px;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.zFYEU0 {
  white-space: nowrap;
  color: #0faaff;
  text-decoration: none;
}
.zFYEU0:hover {
  color: #6b8bfa;
}

.Mp9Z59 {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 40px;
  padding: 9px 20px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  border-radius: 5px;
  outline: none;
  background-color: #444;
  color: #fbf6fe;
  cursor: pointer;
  transition: background-color 0.25s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.25s cubic-bezier(0.23, 1, 0.32, 1), color 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 900px) {
  .dy5UN6 {
    width: 355px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px;
  }
  .V4O9WV {
    white-space: unset;
  }
  .Mp9Z59 {
    width: 100%;
  }
}@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: var(
    --custom-highlight-background,
    linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    )
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}
