/* Tab bar layout (React Navigation web) */
[class*="BottomTabBar"] > *:empty,
[class*="BottomTabBar"] > button:empty,
[class*="BottomTabBar"] > a:empty,
[role="tablist"] > *:empty,
[role="tablist"] > button:empty,
[role="tablist"] > a:empty {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  flex: 0 0 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
[class*="BottomTabBar"] {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
}
[class*="BottomTabBar"] > *:not(:empty),
[class*="BottomTabBar"] > button:not(:empty),
[class*="BottomTabBar"] > a:not(:empty) {
  flex: 1 !important;
  flex-basis: 0 !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
}
nav[role="tablist"],
div[role="tablist"] {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
}
nav[role="tablist"] > *:not(:empty),
div[role="tablist"] > *:not(:empty),
nav[role="tablist"] > button:not(:empty),
div[role="tablist"] > button:not(:empty) {
  flex: 1 !important;
  flex-basis: 0 !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
}
[class*="BottomTabBar"] > *[style*="display: none"],
[class*="BottomTabBar"] > *[style*="display:none"] {
  display: none !important;
  width: 0 !important;
  flex: 0 0 0 !important;
}

#boot-splash-static {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease-out;
  opacity: 1;
}
#boot-splash-static.is-hiding {
  opacity: 0;
  pointer-events: none;
}

.boot-splash-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #121524;
}
.boot-splash-bg-base {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, #4a638f 0%, rgba(74, 99, 143, 0) 45%),
    radial-gradient(circle at 75% 80%, #2f3f5d 0%, rgba(47, 63, 93, 0) 40%);
  background-size: cover;
  background-position: center;
}
.boot-splash-bg-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.boot-splash-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease-out;
  will-change: opacity;
}
#boot-splash-static.boot-splash-image-ready .boot-splash-photo-img {
  opacity: 1;
}
.boot-splash-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(18, 21, 36, 0.45), rgba(18, 21, 36, 0.6));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: backdrop-filter 0.55s ease-out, -webkit-backdrop-filter 0.55s ease-out;
}
#boot-splash-static.boot-splash-image-ready .boot-splash-overlay {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  pointer-events: none;
}

.boot-splash-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(320px, calc(100vw - 48px));
}
.boot-splash-progress {
  width: 100%;
}
.boot-splash-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
}
.boot-splash-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #9daccf 0%, #ffffff 100%);
  transition: width 0.25s ease-out;
}
