/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #fff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #e3e2de;
    --foreground: #7D4FF;
  }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

body {
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

nextjs-portal {
  left: unset !important;
  top: unset !important;
}

@media (prefers-color-scheme: dark) {
  html {
    --lightningcss-light: ;
    --lightningcss-dark: initial;
    color-scheme: dark;
  }
}

@keyframes loadingAnimation {
  0% {
    width: 1%;
  }

  50% {
    width: 50%;
  }

  100% {
    width: 100%;
  }
}

.dots-loader {
  gap: 4px;
  display: flex;
}

.dots-loader .dot {
  background-color: #fff;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  animation: 1.5s ease-in-out infinite dots-animation;
}

.dots-loader .dot:first-child {
  animation-delay: 0s;
}

.dots-loader .dot:nth-child(2) {
  animation-delay: .2s;
}

.dots-loader .dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes dots-animation {
  0%, 80%, 100% {
    opacity: .3;
  }

  40% {
    opacity: 1;
  }
}

.mini-loader-dots {
  gap: 4px;
  display: flex;
}

.mini-loader-dots .dot {
  background-color: #fff;
  border-radius: 50%;
  width: .5rem;
  height: .5rem;
  animation: 1.5s ease-in-out infinite dots-animation;
}

.mini-loader-dots .dot:first-child {
  animation-delay: 0s;
}

.mini-loader-dots .dot:nth-child(2) {
  animation-delay: .2s;
}

.mini-loader-dots .dot:nth-child(3) {
  animation-delay: .4s;
}

.leaflet-btn-weather {
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-rain, .icon-snow {
  width: 3.2rem;
  margin: auto;
  display: flex;
  position: relative;
  left: .8rem;
}

.city_data_wrapper {
  white-space: nowrap;
  background-color: #f9f9f9;
  min-width: 180px;
  max-height: 120px;
  display: inline-block;
  position: relative;
}

.city_data_row {
  justify-content: space-between;
  margin-bottom: 1px;
  display: flex;
}

.city_data_row:last-child {
  margin-bottom: 0;
}

.city_data_col {
  text-align: left;
  flex: none;
  padding: 1px;
  font-size: 11px;
}

.city_data_col:nth-child(2) {
  text-align: right;
}

.city_data_col img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.city_data_bar {
  background-color: #e0e0e0;
  border-radius: 4px;
  width: 4px;
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: -14px;
  overflow: hidden;
}

.city_data_bar_fill {
  background-color: #4caf50;
  border-radius: 0 0 2px 2px;
  width: 100%;
  height: 0;
  transition: height .3s;
  position: absolute;
  bottom: 0;
}

.leaflet-control-zoom span[aria-hidden="true"] {
  pointer-events: none;
}

.custom-marker-bars .marker-container {
  align-items: center;
  display: flex;
  position: relative;
}

.custom-marker-bars .resource-bars {
  flex-direction: row;
  align-items: flex-end;
  gap: 1px;
  height: 20px;
  margin-right: 8px;
  display: flex;
}

.custom-marker-bars .resource-bar {
  background-color: gray;
  border-radius: 2px;
  width: 3px;
  transition: height .3s;
}

.custom-marker-bars .resource-bar.bar-fuel {
  background-color: #291a1a;
}

.custom-marker-bars .resource-bar.bar-resources {
  background-color: #1798b3;
}

.custom-marker-bars .resource-bar.bar-ammunition {
  background-color: #ee1515;
}

.custom-marker-bars .resource-bar.bar-xp {
  background-color: #1a910a;
}

.custom-marker-bars .resource-bar.bar-xp-blue {
  background-color: #164e7a;
}

.custom-marker-bars .resource-bar.bar-xp-red {
  background-color: #70251b;
}

@keyframes maintarget-pulse-fire {
  0% {
    opacity: .9;
    filter: brightness(1.2);
    transform: scale(.8);
  }

  25% {
    opacity: 1;
    filter: brightness(1.6);
    transform: scale(1.15);
  }

  50% {
    opacity: .85;
    filter: brightness(1.4);
    transform: scale(1.3);
  }

  75% {
    opacity: 1;
    filter: brightness(1.7);
    transform: scale(1.1);
  }

  100% {
    opacity: .9;
    filter: brightness(1.2);
    transform: scale(.8);
  }
}

.maintarget-threat-circle {
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, #ffff96f2 0%, #ffc832cc 20%, #0000 40%), radial-gradient(circle, #ff7800 0%, #ff5000e6 35%, #ff2800b3 60%, #dc000066 100%);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  margin-left: -14px;
  animation: 1.5s ease-in-out infinite maintarget-pulse-fire;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 15px #ff7800, 0 0 30px #ff5000e6, 0 0 45px #ff2800b3, inset 0 0 15px #ffb400e6;
}

.maintarget-threat-wrapper {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
}

footer {
  background-color: var(--background);
  width: 100%;
  color: var(--foreground);
  text-align: center;
  z-index: 1000;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 0 -2px 5px #0000001a;
}

footer a {
  color: inherit;
  margin: 0 10px;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.player-line {
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #0000000d;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: .875rem;
  transition: background-color .5s ease-in-out;
  overflow: hidden;
}

.player-line.updated {
  background-color: #5f26f34d;
}

@keyframes flash-bg {
  0% {
    background-color: #5f26f34d;
  }

  100% {
    background-color: #0000;
  }
}

.flash {
  animation: 1.2s ease-in-out flash-bg;
}

.article-excerpt em {
  color: #000;
  background: #ffc10780;
  border-radius: 4px;
  padding: 0 2px;
  font-style: normal;
  transition: background .2s;
}

.sortie-real-point {
  fill: #1a1a1a !important;
  stroke: #000 !important;
  stroke-width: 1px !important;
  fill-opacity: 1 !important;
  opacity: 1 !important;
}

.sortie-selected-line {
  stroke: #1a1a1a !important;
  stroke-dasharray: 6 4 !important;
  stroke-width: 2.5px !important;
  stroke-opacity: 1 !important;
  opacity: 1 !important;
}

.sortie-offset-line {
  stroke: #333 !important;
  stroke-dasharray: 4 6 !important;
  stroke-width: 2px !important;
  stroke-opacity: .8 !important;
  opacity: .8 !important;
}

.sortie-cluster-icon {
  background: none !important;
  border: none !important;
}

.sortie-cluster-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -9999 !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

.sortie-event-marker {
  background: none !important;
  border: none !important;
}

.leaflet-cluster-spider-leg {
  stroke: #666 !important;
  stroke-width: 1.5px !important;
  stroke-opacity: .6 !important;
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 50%;
}

.marker-cluster div {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.sortie-event-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000004d;
}

.sortie-event-popup .leaflet-popup-content {
  margin: 12px 16px;
}

.partner-event-marker {
  background: none !important;
  border: none !important;
}

.partner-real-point {
  fill: #666 !important;
  stroke: #444 !important;
  stroke-width: 1px !important;
  fill-opacity: .7 !important;
  opacity: .7 !important;
}

.partner-cluster-icon {
  background: none !important;
  border: none !important;
}

.partner-event-popup .leaflet-popup-content-wrapper {
  border: 1px dashed #0003;
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000004d;
}

.partner-event-popup .leaflet-popup-content {
  margin: 12px 16px;
}

.partner-event-popup .leaflet-popup-tip {
  background: #fffffff2;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/