.cesium-container {
  position: absolute;
  inset: 0;
  background: #03111d;
}

.cesium-container .cesium-viewer,
.cesium-container .cesium-viewer-cesiumWidgetContainer,
.cesium-container .cesium-widget,
.cesium-container canvas {
  width: 100%;
  height: 100%;
}

.map-visual-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .52;
  background:
    linear-gradient(180deg, rgba(0, 12, 24, .54) 0, rgba(0, 17, 31, .12) 24%, rgba(0, 16, 28, .05) 64%, rgba(0, 9, 19, .72) 100%),
    radial-gradient(ellipse at 52% 52%, transparent 31%, rgba(0, 17, 31, .18) 67%, rgba(0, 7, 16, .74) 100%),
    linear-gradient(90deg, rgba(0, 25, 43, .28), transparent 21%, transparent 79%, rgba(0, 18, 34, .42));
  transition: opacity 180ms ease;
}

.map-visual-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: repeating-linear-gradient(0deg, rgba(35, 179, 236, .09) 0, rgba(35, 179, 236, .09) 1px, transparent 1px, transparent 4px);
}

.map-panel.map-bright .map-visual-mask { opacity: .45; }

.map-status {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  min-width: 168px;
  padding: 10px 16px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(25, 190, 255, .72);
  border-radius: 5px;
  color: #cceeff;
  background: rgba(2, 18, 31, .92);
  box-shadow: 0 0 18px rgba(0, 166, 242, .22);
  text-align: center;
  font-size: 15px;
  transition: opacity 240ms ease;
}

.map-status.is-hidden { opacity: 0; pointer-events: none; }
.map-status.is-error { color: #ffc34d; border-color: rgba(255, 180, 45, .72); }

.map-panel .map-title,
.map-panel .map-tools,
.map-panel .layer-button {
  z-index: 3;
}

.map-panel .cesium-widget-credits {
  left: 18px;
  right: auto;
  bottom: 46px;
  max-width: 780px;
  opacity: .56;
  font-size: 10px;
}

.map-panel .cesium-credit-logoContainer { display: inline-flex; }
.map-panel .cesium-viewer-bottom { z-index: 2; }

.map-panel canvas:focus { outline: none; }
