/* [project]/src/styles/notification.css [app-client] (css) */
.notif-container {
  z-index: 9999;
  pointer-events: none;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  display: flex;
  position: fixed;
  top: 24px;
  right: 24px;
}

.notif-item {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  pointer-events: auto;
  transform-origin: 100% 0;
  background: #141419f2;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 40px 16px 16px;
  animation: .4s cubic-bezier(.16, 1, .3, 1) forwards notif-slide-in;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px #0006, inset 0 0 0 1px #ffffff0d;
}

.notif-item.notif-exit {
  animation: .3s cubic-bezier(.4, 0, 1, 1) forwards notif-slide-out;
}

@keyframes notif-slide-in {
  from {
    opacity: 0;
    transform: translateX(100%)scale(.9);
  }

  to {
    opacity: 1;
    transform: translateX(0)scale(1);
  }
}

@keyframes notif-slide-out {
  from {
    opacity: 1;
    transform: translateX(0)scale(1);
  }

  to {
    opacity: 0;
    transform: translateX(100%)scale(.9);
  }
}

.notif-icon-wrap {
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.notif-icon {
  width: 22px;
  height: 22px;
}

.notif-success .notif-icon-wrap {
  background: linear-gradient(135deg, #10b98133, #10b9811a);
  border: 1px solid #10b9814d;
}

.notif-success .notif-icon {
  color: #10b981;
  filter: drop-shadow(0 0 8px #10b98180);
}

.notif-success {
  border-left: 3px solid #10b981;
}

.notif-error .notif-icon-wrap {
  background: linear-gradient(135deg, #ef444433, #ef44441a);
  border: 1px solid #ef44444d;
}

.notif-error .notif-icon {
  color: #ef4444;
  filter: drop-shadow(0 0 8px #ef444480);
}

.notif-error {
  border-left: 3px solid #ef4444;
}

.notif-warning .notif-icon-wrap {
  background: linear-gradient(135deg, #f59e0b33, #f59e0b1a);
  border: 1px solid #f59e0b4d;
}

.notif-warning .notif-icon {
  color: #f59e0b;
  filter: drop-shadow(0 0 8px #f59e0b80);
}

.notif-warning {
  border-left: 3px solid #f59e0b;
}

.notif-info .notif-icon-wrap {
  background: linear-gradient(135deg, #3b82f633, #3b82f61a);
  border: 1px solid #3b82f64d;
}

.notif-info .notif-icon {
  color: #3b82f6;
  filter: drop-shadow(0 0 8px #3b82f680);
}

.notif-info {
  border-left: 3px solid #3b82f6;
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-title {
  color: #fff;
  margin-bottom: 4px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
}

.notif-message {
  color: #ffffffb3;
  font-size: .8rem;
  line-height: 1.4;
}

.notif-close {
  color: #ffffff80;
  cursor: pointer;
  background: #ffffff1a;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.notif-close:hover {
  color: #fff;
  background: #fff3;
}

.notif-close svg {
  width: 14px;
  height: 14px;
}

.notif-progress {
  background: #ffffff1a;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.notif-progress-bar {
  transform-origin: 0;
  width: 100%;
  height: 100%;
  animation: linear forwards notif-progress-shrink;
}

.notif-success .notif-progress-bar {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.notif-error .notif-progress-bar {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.notif-warning .notif-progress-bar {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.notif-info .notif-progress-bar {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

@keyframes notif-progress-shrink {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.notif-item:hover .notif-progress-bar {
  animation-play-state: paused;
}

@media (max-width: 480px) {
  .notif-container {
    max-width: none;
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .notif-item {
    padding: 12px 36px 12px 12px;
  }

  .notif-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .notif-icon {
    width: 18px;
    height: 18px;
  }

  .notif-title {
    font-size: .85rem;
  }

  .notif-message {
    font-size: .75rem;
  }
}

/* [project]/src/styles/auth-modal.css [app-client] (css) */
.auth-input {
  width: 100%;
  color: var(--text, #e8e8e8);
  background: var(--bg, #0a0a0a);
  border: 1px solid var(--border, #2a2a2a);
  font-size: 13px;
  font-family: var(--font-mono, "SF Mono", "Monaco", "Cascadia Code", monospace);
  border-radius: 2px;
  outline: none;
  padding: 10px 12px;
  transition: border-color .2s;
}

.auth-input:focus {
  border-color: var(--green, #4f8);
}

.auth-input::placeholder {
  color: var(--text-ghost, #555);
}

.auth-button {
  letter-spacing: 1px;
  font-size: 12px;
  font-family: var(--font-mono, monospace);
  border: 1px solid var(--green, #4f8);
  color: var(--green, #4f8);
  cursor: pointer;
  text-transform: uppercase;
  background: #44ff8814;
  border-radius: 2px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.auth-button:hover:not(:disabled) {
  background: #44ff8826;
}

.auth-button:before {
  display: none;
}

.auth-button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.auth-modal-card {
  background: var(--surface, #141414);
  border: 1px solid var(--border, #2a2a2a);
  font-family: var(--font-mono, monospace);
  border-radius: 4px;
  box-shadow: 0 8px 32px #0009;
}

.auth-tab {
  color: var(--text-ghost, #555);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
  flex: 1;
  padding: 12px 16px;
  transition: all .2s;
}

.auth-tab:hover {
  color: var(--text-dim, #888);
}

.auth-tab.active {
  background: var(--overlay-subtle, #ffffff05);
  border-bottom-color: var(--green, #4f8);
  color: var(--green, #4f8);
}

.auth-close-btn {
  color: var(--text-ghost, #555);
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
  padding: 4px;
  transition: color .2s;
  position: absolute;
  top: 12px;
  right: 12px;
}

.auth-close-btn:hover {
  color: var(--text, #e8e8e8);
}

.auth-link {
  color: var(--green, #4f8);
  cursor: pointer;
  font-size: 11px;
  font-family: var(--font-mono, monospace);
  background: none;
  border: none;
  text-decoration: underline;
  transition: opacity .2s;
}

.auth-link:hover {
  opacity: .7;
}

.auth-label {
  color: var(--text-dim, #888);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-family: var(--font-mono, monospace);
  margin-bottom: 6px;
  display: block;
}

.auth-label-hint {
  color: var(--text-ghost, #555);
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
}

/* [project]/src/styles/wallet-balance-card.css [app-client] (css) */
.wallet-balance-card {
  background: none;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  transition: box-shadow .2s ease-in-out;
  display: flex;
  position: relative;
}

.wallet-balance-card:hover {
  box-shadow: 0 1.5px #ffffff2b, inset 0 0 2px #00000014, inset 0 0 4px 3px #10b98126, 0 0 16px 4px #10b98114;
}

.wallet-svg-wrapper {
  background: #10b9811a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  display: flex;
}

.wallet-svg-wrapper svg {
  width: 100%;
  height: 100%;
}

.wallet-balance-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
  min-width: 80px;
  display: flex;
}

.wallet-balance-heading {
  color: #888;
  letter-spacing: .5px;
  font-size: 10px;
  font-weight: 400;
}

.wallet-balance-amount {
  color: #fff;
  letter-spacing: .3px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.wallet-deposit-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background-color: #10b981;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.wallet-deposit-btn:hover {
  background-color: #34d399;
  box-shadow: 0 0 15px -3px #10b98166;
}

.wallet-plus-sign {
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

/* [project]/src/styles/flight-card.css [app-client] (css) */
:root {
  --fc-bg: #fff;
  --fc-card: #555;
  --fc-status: #29c676;
  --fc-white: #fff;
  --fc-anim: cubic-bezier(0, 0, .25, 1);
}

.flight-card-container {
  z-index: 50;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.fc-toggle-btn {
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  color: #fff;
  cursor: pointer;
  background: #ffffff1a;
  border: 1px solid #ffffff26;
  border-right: none;
  border-radius: 12px 0 0 12px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 60px;
  font-size: 1.5rem;
  transition: all .3s;
  display: none;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}

.fc-toggle-btn:hover {
  background: #ffffff26;
}

.fc-toggle-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1440px) {
  .flight-card-container {
    right: -280px;
  }

  .flight-card-container.fc-open {
    right: 24px;
  }

  .fc-toggle-btn {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .flight-card-container {
    bottom: 16px;
    right: -280px;
  }

  .flight-card-container.fc-open {
    right: 16px;
  }
}

@media (max-width: 768px) {
  .flight-card-container {
    bottom: 12px;
    right: -280px;
  }

  .flight-card-container.fc-open {
    right: 12px;
  }

  .fc-card {
    width: 15rem;
    padding: 1rem;
  }

  .fc-toggle-btn {
    width: 32px;
    height: 50px;
    left: -36px;
  }
}

.flight-card-container ::selection {
  background: #ff00324d;
}

.flight-card-container a {
  text-decoration: none;
}

.fc-small {
  letter-spacing: .05rem;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-size: .65rem;
  font-weight: 200;
  display: flex;
}

.fc-small-text {
  opacity: .5;
}

.fc-captin {
  margin-right: .3rem;
  font-size: .8rem;
}

.fc-card-wrap {
  cursor: pointer;
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.fc-card {
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  width: 17.5rem;
  min-height: 30rem;
  color: var(--fc-white);
  background: #ffffff06;
  border: 1px solid #ffffff1a;
  border-radius: 2rem;
  padding: 1.5rem;
  font-family: Switzer, sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 2rem #ffffff1a;
}

.fc-blob {
  filter: blur(3rem);
  z-index: -1;
  pointer-events: none;
  background: #fff3;
  border-radius: 40%;
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 0;
  right: 0;
}

#fc-wave {
  z-index: -1;
  opacity: .5;
  filter: saturate(0) blur(.5rem) brightness(2);
  background: none;
  width: 100%;
  height: 15rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.fc-border {
  background: linear-gradient(.25turn, #fff0, #fff6, #fff0);
  width: 80%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 10%;
}

.fc-top, .fc-flight {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.fc-on, .fc-flight {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fc-on {
  background: linear-gradient(to bottom, #00774f, var(--fc-status));
  text-align: center;
  border: 1px solid green;
  border-radius: 3rem;
  justify-content: center;
  align-items: center;
  margin-bottom: .3rem;
  padding: .2rem .5rem;
  font-size: .6rem;
  display: flex;
  box-shadow: 0 0 1rem #fff3;
}

.fc-check {
  margin-right: .25rem;
}

.fc-label {
  opacity: .5;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-right: .15rem;
  font-size: .5rem;
  display: flex;
}

.fc-num {
  opacity: .5;
  font-size: .7rem;
  font-weight: 500;
}

.fc-mid {
  z-index: 99;
  margin-top: 1.25rem;
  position: relative;
}

.fc-loc {
  justify-content: center;
  margin: 2rem 0;
  display: flex;
}

.fc-box {
  text-align: center;
  background: #ffffff0d;
  border-radius: .5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 3rem;
  padding: .35rem;
  display: flex;
  position: relative;
}

.fc-sign {
  margin-right: .25rem;
}

.fc-info {
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  color: var(--fc-white);
  z-index: 99;
  filter: blur(1rem);
  opacity: 0;
  pointer-events: none;
  background: #ffffff1a;
  border-radius: 1rem;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  width: 8rem;
  padding: .5rem;
  font-size: .75rem;
  display: flex;
  position: fixed;
  right: 0;
}

.fc-code {
  font-family: monospace;
  font-size: 1rem;
}

.fc-country {
  opacity: .2;
  margin-top: .15rem;
  font-size: .55rem;
}

.fc-line {
  justify-content: center;
  align-items: center;
  gap: .3rem;
  margin-top: .25rem;
  display: flex;
}

.fc-dur {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.fc-duration {
  margin-top: .9rem;
}

.fc-meta {
  opacity: .5;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  display: flex;
}

.fc-stat {
  flex-flow: row;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  display: flex;
}

.fc-speed {
  color: #fff;
  letter-spacing: .02rem;
  text-transform: uppercase;
  border-radius: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin: 0 .1rem 0 .5rem;
  padding: .25rem;
  font-size: .6rem;
  font-weight: 400;
  display: flex;
}

.fc-speed-box {
  margin-top: .25rem;
}

.fc-speed-label {
  opacity: .5;
}

.fc-times {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.fc-time {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fc-dot {
  background: var(--fc-status);
  border-radius: 50%;
  width: .4rem;
  height: .4rem;
  margin-left: .25rem;
  margin-right: .5rem;
  position: relative;
}

.fc-dot:after {
  content: "";
  background: inherit;
  animation: fc-pulse 1s var(--fc-anim) infinite;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}

@keyframes fc-pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(3);
  }
}

.fc-wrap {
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  font-size: .6rem;
  display: flex;
}

.fc-text {
  color: var(--fc-white);
  font-weight: 700;
}

.fc-min {
  opacity: 1;
  color: var(--fc-status);
  letter-spacing: .02rem;
  text-transform: uppercase;
  text-shadow: 0 0 1rem var(--fc-status);
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  margin-left: -.75rem;
  padding: .25rem;
  font-size: .6rem;
  font-weight: 600;
  display: flex;
}

.fc-plane {
  text-align: center;
  margin: 1rem 0;
  position: relative;
  overflow: hidden;
}

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

#fc-plane-canvas {
  filter: brightness(.8) contrast(1.2) saturate(.6) hue-rotate(-10deg);
  pointer-events: none;
  background: none;
  width: 100%;
  max-height: 10rem;
}

.fc-aircraft-label {
  opacity: .25;
  justify-content: center;
  align-items: center;
  margin-bottom: .25rem;
  font-size: .7rem;
  display: flex;
}

.fc-type {
  opacity: .5;
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  display: flex;
}

.fc-foot {
  z-index: 99;
  justify-content: space-between;
  gap: .3rem;
  margin-top: 1rem;
  display: flex;
  position: relative;
}

.fc-item {
  background: #ffffff1a;
  border-radius: .5rem;
  flex: 1;
  padding: .4rem;
  position: relative;
}

.fc-item .fc-wrap {
  opacity: .8;
}

.fc-data {
  opacity: .5;
  align-items: center;
  gap: .15rem;
  font-size: .55rem;
  display: flex;
}

.fc-val {
  letter-spacing: -.01rem;
  margin-top: .15rem;
  font-size: .55rem;
  font-weight: 600;
}

.fc-weather-icon {
  margin-right: .25rem;
}

.fc-arr {
  opacity: .5;
  margin-top: .5rem;
  font-size: .7rem;
}

@keyframes fc-dash {
  from {
    stroke-dashoffset: 1000px;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.fc-white {
  animation: 5s linear infinite alternate fc-dash;
}

.fc-green {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000px;
  animation: 2s ease-in-out forwards fc-dash;
}

.fc-features {
  opacity: .5;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  margin-top: .75rem;
  padding: 0 1rem;
  font-size: .6rem;
  display: flex;
}

.fc-feature {
  justify-content: center;
  align-items: center;
  display: flex;
}

.fc-wifi-icon {
  color: var(--fc-status);
  filter: drop-shadow(0 0 1rem var(--fc-status));
  margin-right: .25rem;
}

.fc-belt-icon {
  color: #ff0;
  filter: drop-shadow(0 0 1rem #ff0);
  margin-right: .25rem;
}

.fc-logo {
  justify-content: center;
  align-items: center;
  height: 1.75rem;
  display: flex;
}

.fc-logo img {
  height: 1.75rem;
}

.fc-flag {
  border-radius: 50%;
  width: .9rem;
  height: .9rem;
  font-size: .9rem;
}

.fc-progress-container {
  margin: 1rem 0;
  padding: 0 .25rem;
}

.fc-progress-bar {
  background: #ffffff1a;
  border-radius: 3px;
  height: 6px;
  position: relative;
  overflow: hidden;
}

.fc-progress-fill {
  background: linear-gradient(90deg, var(--fc-status), #0f8);
  height: 100%;
  box-shadow: 0 0 10px var(--fc-status);
  border-radius: 3px;
  transition: width .5s;
}

.fc-progress-label {
  text-transform: uppercase;
  opacity: .6;
  text-align: center;
  letter-spacing: .05rem;
  margin-top: .35rem;
  font-size: .5rem;
}

.fc-icon-sm {
  opacity: .7;
  width: .7rem;
  height: .7rem;
  margin-right: .2rem;
}

.fc-cloud {
  pointer-events: none;
  height: 5rem;
  animation: 10s linear infinite fc-cloud-move;
  position: absolute;
  bottom: 1rem;
  left: 0;
}

@keyframes fc-cloud-move {
  from {
    opacity: 0;
    transform: translateX(150%);
  }

  20% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.fc-icon {
  margin-right: .2rem;
}

/*# sourceMappingURL=src_styles_8a0ee80d._.css.map*/