/* [project]/app/components/AppHeader.module.css [app-client] (css) */
.AppHeader-module__JkTtCq__header {
  background: var(--gray-2);
  flex-direction: column;
  width: 100%;
  padding: 0;
  display: flex;
}

.AppHeader-module__JkTtCq__top {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px;
  display: flex;
}

.AppHeader-module__JkTtCq__search {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.AppHeader-module__JkTtCq__search_input {
  max-width: 300px;
}

.AppHeader-module__JkTtCq__logo {
  align-items: center;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.AppHeader-module__JkTtCq__logo:hover {
  opacity: .8;
}

.AppHeader-module__JkTtCq__logo_img {
  display: block;
  width: auto !important;
  height: 32px !important;
}

.AppHeader-module__JkTtCq__logo_img img {
  width: auto !important;
  height: 32px !important;
}

.AppHeader-module__JkTtCq__actions {
  align-items: center;
  display: flex;
}

.AppHeader-module__JkTtCq__username {
  color: var(--violet-9);
  font-weight: 500;
}

.AppHeader-module__JkTtCq__login_btn {
  background-color: var(--violet-5) !important;
  border-color: var(--violet-5) !important;
}

.AppHeader-module__JkTtCq__login_btn:hover {
  background-color: var(--violet-7) !important;
  border-color: var(--violet-7) !important;
}

.AppHeader-module__JkTtCq__main_nav {
  width: 100%;
}

.AppHeader-module__JkTtCq__memberMenu {
  border: 1px solid var(--gray-3) !important;
  border-radius: 4px !important;
  padding: 0 !important;
}

.AppHeader-module__JkTtCq__memberMenu .ant-dropdown-menu-item-divider {
  margin: 0 !important;
}

:is(.AppHeader-module__JkTtCq__memberMenu .ant-dropdown-menu-item:hover, .AppHeader-module__JkTtCq__memberMenu .ant-dropdown-menu-item-active) {
  color: var(--violet-9) !important;
  background-color: var(--violet-1) !important;
}

.AppHeader-module__JkTtCq__memberMenu .ant-dropdown-menu-item {
  border-radius: 0 !important;
}

.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item-divider {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .AppHeader-module__JkTtCq__logo {
    padding-top: 4px;
  }

  .AppHeader-module__JkTtCq__logo_img {
    height: 22px !important;
  }

  .AppHeader-module__JkTtCq__logo_img img {
    height: 22px !important;
  }

  .AppHeader-module__JkTtCq__username {
    display: none;
  }
}

/* [project]/app/components/LanguageSwitcher.module.css [app-client] (css) */
.LanguageSwitcher-module__Mq00sq__langMenu {
  border: 1px solid var(--gray-3);
  border-radius: 4px !important;
  padding: 0 !important;
}

.LanguageSwitcher-module__Mq00sq__langMenu .ant-dropdown-menu-item {
  padding: 1px 6px !important;
}

:is(.LanguageSwitcher-module__Mq00sq__langMenu .ant-dropdown-menu-item:hover, .LanguageSwitcher-module__Mq00sq__langMenu .ant-dropdown-menu-item-active) {
  color: var(--violet-9) !important;
  background-color: var(--violet-1) !important;
}

.LanguageSwitcher-module__Mq00sq__langMenu .ant-dropdown-menu-item {
  border-radius: 0 !important;
}

.LanguageSwitcher-module__Mq00sq__lang_button {
  cursor: pointer;
  color: var(--blue-9);
  background: none;
  border: none;
  padding: 4px 6px;
}

.LanguageSwitcher-module__Mq00sq__lang_button:hover {
  background: #0000000a;
  border-radius: 4px;
}

.LanguageSwitcher-module__Mq00sq__lang_menu_link {
  padding: 4px 8px;
  text-decoration: none;
  display: block;
}

/* [project]/app/components/MainNavigation.module.css [app-client] (css) */
.MainNavigation-module___brqeG__nav {
  background: var(--lime-0);
  width: 100%;
}

.MainNavigation-module___brqeG__mobile_toggle {
  background: var(--lime-1);
  width: 100%;
  color: var(--lime-9);
  text-align: left;
  cursor: pointer;
  border: none;
  padding: 10px 12px;
  display: none;
}

.MainNavigation-module___brqeG__menu {
  align-items: stretch;
  width: 100%;
  display: flex;
}

.MainNavigation-module___brqeG__item {
  align-items: stretch;
  display: flex;
  position: relative;
}

.MainNavigation-module___brqeG__item_link, .MainNavigation-module___brqeG__item_button {
  min-height: 36px;
  color: var(--lime-9);
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  display: inline-flex;
}

.MainNavigation-module___brqeG__item_link:hover, .MainNavigation-module___brqeG__item_button:hover, .MainNavigation-module___brqeG__item_link:focus-visible, .MainNavigation-module___brqeG__item_button:focus-visible {
  background: var(--lime-2);
  color: var(--lime-9);
  outline: none;
}

.MainNavigation-module___brqeG__active > .MainNavigation-module___brqeG__item_link, .MainNavigation-module___brqeG__active > .MainNavigation-module___brqeG__item_button {
  color: var(--violet-9);
  background: var(--violet-1);
  font-weight: 500;
}

.MainNavigation-module___brqeG__cta .MainNavigation-module___brqeG__item_link {
  background: var(--violet-5);
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  transition: background .2s;
}

@media (min-width: 769px) {
  .MainNavigation-module___brqeG__cta {
    align-items: center;
    padding: 0 8px;
    display: flex;
  }

  .MainNavigation-module___brqeG__cta .MainNavigation-module___brqeG__item_link {
    height: 32px;
    min-height: 32px;
    padding: 0 12px;
  }
}

.MainNavigation-module___brqeG__cta .MainNavigation-module___brqeG__item_link:hover {
  background: var(--violet-7);
}

.MainNavigation-module___brqeG__cta .MainNavigation-module___brqeG__item_link:active {
  transform: translateY(0);
}

.MainNavigation-module___brqeG__cta.MainNavigation-module___brqeG__active .MainNavigation-module___brqeG__item_link {
  background: var(--violet-7);
  box-shadow: inset 0 2px 4px #0000001a;
}

.MainNavigation-module___brqeG__chevron {
  transform-origin: center;
  border-bottom: 2px solid;
  border-right: 2px solid;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  transition: transform .2s;
  transform: rotate(45deg);
}

.MainNavigation-module___brqeG__has_children:hover .MainNavigation-module___brqeG__chevron, .MainNavigation-module___brqeG__has_children:focus-within .MainNavigation-module___brqeG__chevron, .MainNavigation-module___brqeG__force_open .MainNavigation-module___brqeG__chevron {
  margin-top: 2px;
  transform: rotate(-135deg);
}

.MainNavigation-module___brqeG__submenu {
  border: 1px solid var(--gray-3);
  z-index: 20;
  background: #fff;
  min-width: 190px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}

.MainNavigation-module___brqeG__has_children:hover .MainNavigation-module___brqeG__submenu, .MainNavigation-module___brqeG__has_children:focus-within .MainNavigation-module___brqeG__submenu, .MainNavigation-module___brqeG__force_open .MainNavigation-module___brqeG__submenu {
  display: block;
}

.MainNavigation-module___brqeG__submenu_item {
  width: 100%;
}

.MainNavigation-module___brqeG__submenu_link {
  width: 100%;
  color: var(--lime-8);
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  display: flex;
}

.MainNavigation-module___brqeG__submenu_link:hover, .MainNavigation-module___brqeG__submenu_link:focus-visible {
  background: var(--lime-0);
  outline: none;
}

.MainNavigation-module___brqeG__submenu_icon {
  background: var(--gray-5);
  border-radius: 999px;
  width: 8px;
  height: 8px;
}

.MainNavigation-module___brqeG__submenu_active .MainNavigation-module___brqeG__submenu_link {
  background: var(--violet-1);
  color: var(--violet-9);
  font-weight: 50;
}

.MainNavigation-module___brqeG__submenu_active .MainNavigation-module___brqeG__submenu_icon {
  background: var(--blue-7);
}

/* [project]/app/components/AddFlightModal.module.css [app-client] (css) */
.AddFlightModal-module__W5-W4a__modalWrap .ant-modal-content {
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #fff6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px #1f268726;
  background: #ffffffd9 !important;
  padding: 0 !important;
}

.AddFlightModal-module__W5-W4a__modalWrap .ant-modal-header {
  border-bottom: 1px solid #0000000d;
  background: none !important;
  margin-bottom: 0 !important;
  padding: 20px 24px !important;
}

.AddFlightModal-module__W5-W4a__modalWrap .ant-modal-title {
  color: #1d1d1f;
  font-size: 20px;
  font-weight: 700;
}

.AddFlightModal-module__W5-W4a__modalWrap .ant-modal-body {
  padding: 0 !important;
}

.AddFlightModal-module__W5-W4a__modalWrap .ant-modal .ant-modal-container {
  box-shadow: none;
  border-radius: 4px;
  padding: 8px;
}

.AddFlightModal-module__W5-W4a__stepper {
  border-bottom: 1px solid var(--gray-3);
  background: #ffffff80;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  display: flex;
}

.AddFlightModal-module__W5-W4a__step {
  color: var(--gray-6);
  z-index: 1;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: flex;
  position: relative;
}

.AddFlightModal-module__W5-W4a__step.AddFlightModal-module__W5-W4a__active {
  color: #1d1d1f;
}

.AddFlightModal-module__W5-W4a__step.AddFlightModal-module__W5-W4a__completed {
  color: var(--violet-7);
}

.AddFlightModal-module__W5-W4a__stepIcon {
  border: 1px solid var(--gray-4);
  background: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.AddFlightModal-module__W5-W4a__step.AddFlightModal-module__W5-W4a__active .AddFlightModal-module__W5-W4a__stepIcon {
  border-color: var(--violet-3);
  background-color: var(--violet-0);
  color: var(--violet-6);
}

.AddFlightModal-module__W5-W4a__step.AddFlightModal-module__W5-W4a__completed .AddFlightModal-module__W5-W4a__stepIcon {
  border-color: var(--violet-6);
  background: var(--violet-6);
  color: #fff;
}

.AddFlightModal-module__W5-W4a__stepContent {
  min-height: 270px;
  padding: 8px 0;
}

.AddFlightModal-module__W5-W4a__modalFooter {
  border-top: 1px solid var(--gray-3);
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  display: flex;
}

.AddFlightModal-module__W5-W4a__grid2 {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.AddFlightModal-module__W5-W4a__toggleRow {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.AddFlightModal-module__W5-W4a__nextBtn {
  background-color: var(--violet-6) !important;
  border-color: var(--violet-6) !important;
}

.AddFlightModal-module__W5-W4a__nextBtn:hover {
  background-color: var(--violet-5) !important;
  border-color: var(--violet-5) !important;
}

.AddFlightModal-module__W5-W4a__toggleBtn {
  color: #1d1d1f;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d1d1d6;
  border-radius: 4px;
  padding: 4px 8px;
  transition: all .2s;
}

.AddFlightModal-module__W5-W4a__toggleBtn.AddFlightModal-module__W5-W4a__active {
  background: var(--blue-6);
  color: #fff;
  border-color: var(--blue-6);
}

.AddFlightModal-module__W5-W4a__dayOffsetRow {
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  display: flex;
}

.AddFlightModal-module__W5-W4a__offsetBtn {
  border: 1px solid var(--gray-3);
  background-color: var(--gray-0);
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  line-height: 15px;
}

.AddFlightModal-module__W5-W4a__offsetBtn.AddFlightModal-module__W5-W4a__active {
  background: var(--lime-0);
  color: var(--lime-7);
  border-color: var(--lime-7);
}

.AddFlightModal-module__W5-W4a__durationLabel {
  color: var(--violet-8);
}

.AddFlightModal-module__W5-W4a__mapHero {
  background: #e5e5ea;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

:is(.ant-picker-large, .ant-input-lg) {
  padding: 4px 8px;
}

.ant-switch.ant-switch-checked {
  background-color: var(--lime-7) !important;
}

@media (max-width: 768px) {
  .AddFlightModal-module__W5-W4a__mapHero {
    display: none;
  }

  .AddFlightModal-module__W5-W4a__stepContent {
    padding: 16px;
  }

  .AddFlightModal-module__W5-W4a__stepper {
    padding: 12px 16px;
    overflow-x: auto;
  }
}

.AddFlightModal-module__W5-W4a__legCard {
  cursor: pointer;
  border: 1px solid var(--gray-4);
  background: #fff;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  padding: 4px 8px;
  transition: all .3s;
  display: flex;
}

.AddFlightModal-module__W5-W4a__legCard:hover {
  border-color: var(--violet-4);
  background-color: var(--violet-0);
}

.AddFlightModal-module__W5-W4a__aircraftModelBadge {
  background: var(--lime-0);
  color: var(--lime-6);
  border: 1px solid var(--lime-6);
  border-radius: 4px;
  margin-top: 4px;
  padding: 2px 6px;
  font-size: 13px;
  line-height: 15px;
  display: inline-block;
}

/* [project]/node_modules/ol/ol.css [app-client] (css) */
:root, :host {
  --ol-background-color: white;
  --ol-accent-background-color: #f5f5f5;
  --ol-subtle-background-color: #80808040;
  --ol-partial-background-color: #ffffffbf;
  --ol-foreground-color: #333;
  --ol-subtle-foreground-color: #666;
  --ol-brand-color: #0af;
}

.ol-box {
  box-sizing: border-box;
  border: 1.5px solid var(--ol-background-color);
  background-color: var(--ol-partial-background-color);
  border-radius: 2px;
}

.ol-mouse-position {
  position: absolute;
  top: 8px;
  right: 8px;
}

.ol-scale-line {
  background: var(--ol-partial-background-color);
  border-radius: 4px;
  padding: 2px;
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.ol-scale-line-inner {
  border: 1px solid var(--ol-subtle-foreground-color);
  color: var(--ol-foreground-color);
  text-align: center;
  will-change: contents, width;
  border-top: none;
  margin: 1px;
  font-size: 10px;
  transition: all .25s;
}

.ol-scale-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.ol-scale-bar-inner {
  display: flex;
}

.ol-scale-step-marker {
  background-color: var(--ol-foreground-color);
  float: right;
  z-index: 10;
  width: 1px;
  height: 15px;
}

.ol-scale-step-text {
  z-index: 11;
  color: var(--ol-foreground-color);
  text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
  font-size: 10px;
  position: absolute;
  bottom: -5px;
}

.ol-scale-text {
  text-align: center;
  color: var(--ol-foreground-color);
  text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
  font-size: 12px;
  position: absolute;
  bottom: 25px;
}

.ol-scale-singlebar {
  z-index: 9;
  box-sizing: border-box;
  border: 1px solid var(--ol-foreground-color);
  height: 10px;
  position: relative;
}

.ol-scale-singlebar-even {
  background-color: var(--ol-subtle-foreground-color);
}

.ol-scale-singlebar-odd {
  background-color: var(--ol-background-color);
}

.ol-unsupported {
  display: none;
}

.ol-viewport, .ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ol-viewport canvas {
  all: unset;
  overflow: hidden;
}

.ol-viewport {
  touch-action: pan-x pan-y;
}

.ol-selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

.ol-grabbing {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.ol-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.ol-control {
  background-color: var(--ol-subtle-background-color);
  border-radius: 4px;
  position: absolute;
}

.ol-zoom {
  top: .5em;
  left: .5em;
}

.ol-rotate {
  transition: opacity .25s linear, visibility linear;
  top: .5em;
  right: .5em;
}

.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s;
}

.ol-zoom-extent {
  top: 4.643em;
  left: .5em;
}

.ol-full-screen {
  top: .5em;
  right: .5em;
}

.ol-control button {
  color: var(--ol-subtle-foreground-color);
  font-weight: bold;
  font-size: inherit;
  text-align: center;
  background-color: var(--ol-background-color);
  border: none;
  border-radius: 2px;
  width: 1.375em;
  height: 1.375em;
  margin: 1px;
  padding: 0;
  line-height: .4em;
  text-decoration: none;
  display: block;
}

.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0;
}

.ol-zoom-extent button {
  line-height: 1.4em;
}

.ol-compass {
  will-change: transform;
  font-weight: normal;
  display: block;
}

.ol-touch .ol-control button {
  font-size: 1.5em;
}

.ol-touch .ol-zoom-extent {
  top: 5.5em;
}

.ol-control button:hover, .ol-control button:focus {
  outline: 1px solid var(--ol-subtle-foreground-color);
  color: var(--ol-foreground-color);
  text-decoration: none;
}

.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0;
}

.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px;
}

.ol-attribution {
  text-align: right;
  flex-flow: row-reverse;
  align-items: center;
  max-width: calc(100% - 1.3em);
  display: flex;
  bottom: .5em;
  right: .5em;
}

.ol-attribution a {
  color: var(--ol-subtle-foreground-color);
  text-decoration: none;
}

.ol-attribution ul {
  color: var(--ol-foreground-color);
  text-shadow: 0 0 2px var(--ol-background-color);
  margin: 0;
  padding: 1px .5em;
  font-size: 12px;
}

.ol-attribution li {
  list-style: none;
  display: inline;
}

.ol-attribution li:not(:last-child):after {
  content: " ";
}

.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle;
}

.ol-attribution button {
  flex-shrink: 0;
}

.ol-attribution.ol-collapsed ul {
  display: none;
}

.ol-attribution:not(.ol-collapsed) {
  background: var(--ol-partial-background-color);
}

.ol-attribution.ol-uncollapsible {
  border-radius: 4px 0 0;
  bottom: 0;
  right: 0;
}

.ol-attribution.ol-uncollapsible img {
  max-height: 1.6em;
  margin-top: -.2em;
}

.ol-attribution.ol-uncollapsible button {
  display: none;
}

.ol-zoomslider {
  height: 200px;
  top: 4.5em;
  left: .5em;
}

.ol-zoomslider button {
  height: 10px;
  position: relative;
}

.ol-touch .ol-zoomslider {
  top: 5.5em;
}

.ol-overviewmap {
  bottom: .5em;
  left: .5em;
}

.ol-overviewmap.ol-uncollapsible {
  border-radius: 0 4px 0 0;
  bottom: 0;
  left: 0;
}

.ol-overviewmap .ol-overviewmap-map, .ol-overviewmap button {
  display: block;
}

.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid var(--ol-subtle-foreground-color);
  width: 150px;
  height: 150px;
}

.ol-overviewmap:not(.ol-collapsed) button {
  position: absolute;
  bottom: 0;
  left: 0;
}

.ol-overviewmap.ol-collapsed .ol-overviewmap-map, .ol-overviewmap.ol-uncollapsible button {
  display: none;
}

.ol-overviewmap:not(.ol-collapsed) {
  background: var(--ol-subtle-background-color);
}

.ol-overviewmap-box {
  border: 1.5px dotted var(--ol-subtle-foreground-color);
}

.ol-overviewmap .ol-overviewmap-box:hover {
  cursor: move;
}

.ol-overviewmap .ol-viewport:hover {
  cursor: pointer;
}

/* [project]/app/components/AppFooter.module.css [app-client] (css) */
.AppFooter-module__NsDM_G__footer {
  background: var(--gray-1);
  border-top: 1px solid var(--gray-3);
  width: 100%;
  color: var(--gray-8);
  padding: 8px;
  font-size: 14px;
  line-height: 1.35;
}

.AppFooter-module__NsDM_G__container {
  margin: 0 auto;
  padding: 0;
}

.AppFooter-module__NsDM_G__grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  display: grid;
}

.AppFooter-module__NsDM_G__column h3 {
  color: var(--gray-9);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}

.AppFooter-module__NsDM_G__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.AppFooter-module__NsDM_G__column ul li {
  margin-bottom: 0;
}

.AppFooter-module__NsDM_G__column ul li a {
  color: var(--gray-6);
  text-decoration: none;
  transition: color .2s;
}

.AppFooter-module__NsDM_G__column ul li a:hover {
  color: var(--violet-9);
}

.AppFooter-module__NsDM_G__bottom {
  border-top: 1px solid var(--gray-3);
  color: var(--gray-5);
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  font-size: 12px;
  display: flex;
}

.AppFooter-module__NsDM_G__copyright {
  align-items: center;
  gap: 8px;
  display: flex;
}

.AppFooter-module__NsDM_G__brand {
  color: var(--gray-8);
}

.AppFooter-module__NsDM_G__social {
  gap: 20px;
  display: flex;
}

@media (max-width: 768px) {
  .AppFooter-module__NsDM_G__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .AppFooter-module__NsDM_G__grid {
    grid-template-columns: 1fr;
  }

  .AppFooter-module__NsDM_G__bottom {
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
}

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