*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  background: #060810;
  color: #c8d8f0;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.75rem 1rem;
  background: #0c1220;
  border-bottom: 1px solid rgba(120, 160, 220, 0.2);
}

.toolbar__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.toolbar__ver {
  opacity: 0.5;
  font-weight: 400;
}

.toolbar__stats {
  margin: 0;
  margin-left: auto;
  font-size: 0.75rem;
  opacity: 0.75;
}

.map-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sim-date-bar {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 11;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  user-select: none;
}

.sim-date-banner {
  padding: 8px 18px;
  border-radius: 14px;
  border: 1px solid rgba(120, 180, 255, 0.28);
  background: rgba(8, 14, 28, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e8f4ff;
  pointer-events: none;
}

.sim-speed-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: linear-gradient(165deg, rgba(14, 32, 52, 0.88) 0%, rgba(4, 12, 28, 0.94) 100%);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 6px 22px rgba(0, 0, 0, 0.38);
  color: rgba(200, 230, 255, 0.92);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.sim-speed-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  pointer-events: none;
}

.sim-speed-btn-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.sim-speed-btn:hover:not(:disabled) {
  border-color: rgba(0, 212, 255, 0.48);
  color: rgba(0, 232, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 212, 255, 0.12),
    0 0 22px rgba(0, 212, 255, 0.2),
    0 8px 26px rgba(0, 0, 0, 0.42);
}

.sim-speed-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.sim-speed-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.sim-pause-btn {
  min-width: 36px;
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
}

.sim-pause-btn > .sim-speed-btn-icon {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0.78);
  transform-origin: 50% 50%;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.sim-pause-btn:not(.is-paused) > #simPauseIconPause,
.sim-pause-btn.is-paused > #simPauseIconPlay {
  opacity: 1;
  transform: scale(1);
}

.sim-pause-btn .sim-speed-btn-icon path {
  stroke-width: 2.15;
}

.perf-hud {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(120, 180, 255, 0.28);
  background: rgba(8, 14, 28, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  user-select: none;
}

.perf-hud__line {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: rgba(200, 220, 245, 0.88);
}

.perf-hud__sep {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(160, 190, 230, 0.55);
}

.resource-hud {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(120, 180, 255, 0.28);
  background: rgba(8, 14, 28, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  user-select: none;
}

.resource-hud__icon {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  display: block;
}

.resource-hud__amount,
.resource-hud__delta {
  height: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #e8f4ff;
}

.resource-hud__sep {
  font-size: 13px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(160, 190, 230, 0.55);
}

.resource-hud__delta--positive {
  color: rgba(100, 255, 200, 0.95);
}

.resource-hud__delta--negative {
  color: rgba(255, 140, 120, 0.95);
}

.right-hud-stack {
  position: absolute;
  top: 58px;
  right: 14px;
  z-index: 10;
  width: min(260px, calc(100vw - 28px));
  max-height: min(72vh, 620px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.ships-panel,
.empires-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 12px 14px;
  border: 1px solid rgba(120, 180, 255, 0.28);
  border-radius: 14px;
  background: rgba(8, 14, 28, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  user-select: none;
  pointer-events: auto;
}

.ships-panel {
  flex: 0 0 auto;
  max-height: min(44vh, 380px);
}

.empires-panel {
  flex: 1 1 auto;
  max-height: min(42vh, 360px);
}

.side-panel.is-collapsed {
  flex: 0 0 auto;
  max-height: none;
}

.side-panel__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(200, 230, 255, 0.92);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.side-panel.is-collapsed .side-panel__toggle {
  margin-bottom: 0;
}

.side-panel__toggle:hover {
  color: rgba(230, 248, 255, 0.98);
}

.side-panel__toggle:focus-visible {
  outline: 2px solid rgba(0, 212, 255, 0.55);
  outline-offset: 2px;
  border-radius: 6px;
}

.side-panel__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.side-panel__chevron {
  flex: 0 0 auto;
  color: rgba(160, 210, 255, 0.75);
  transition: transform 0.18s ease;
}

.side-panel.is-collapsed .side-panel__chevron {
  transform: rotate(-90deg);
}

.side-panel__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.side-panel.is-collapsed .side-panel__body {
  display: none;
}

button.create-ship-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  margin: 0 0 10px;
  min-height: 48px;
  padding: 8px 12px;
  overflow: hidden;
  line-height: 1.2;
  font-size: inherit;
  letter-spacing: 0.03em;
  color: rgba(230, 248, 255, 0.96);
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 12px;
  background: linear-gradient(
    155deg,
    rgba(10, 28, 48, 0.98) 0%,
    rgba(4, 16, 36, 0.99) 50%,
    rgba(0, 42, 58, 0.88) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

button.create-ship-btn:hover:not(:disabled):not(.is-building) {
  border-color: rgba(140, 110, 255, 0.42);
  background: linear-gradient(
    155deg,
    rgba(14, 36, 58, 0.99) 0%,
    rgba(6, 22, 48, 1) 48%,
    rgba(0, 52, 72, 0.92) 100%
  );
}

button.create-ship-btn:disabled:not(.is-building) {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.4);
}

button.create-ship-btn.is-building {
  cursor: default;
  border-color: rgba(0, 212, 255, 0.45);
}

.create-ship-btn__progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(0, 180, 255, 0.22) 0%,
    rgba(0, 230, 200, 0.32) 55%,
    rgba(120, 200, 255, 0.26) 100%
  );
  box-shadow: inset 0 0 12px rgba(0, 220, 255, 0.15);
  pointer-events: none;
  z-index: 0;
  transition: width 0.12s linear;
}

.create-ship-btn-label,
.create-ship-btn-cost {
  position: relative;
  z-index: 1;
}

.create-ship-btn-label {
  font-size: 13px;
  font-weight: 700;
}

.create-ship-btn-cost {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  font-weight: 600;
  color: rgba(160, 240, 255, 0.92);
}

.create-ship-btn-cost .resource-hud__icon {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
}

.construction-time__sep {
  margin: 0 0.15rem;
  opacity: 0.65;
}

.construction-time {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
  color: rgba(160, 240, 255, 0.92);
}

.construction-time__icon {
  flex: 0 0 auto;
  display: block;
}

.fleet-add-btn__cost .construction-time {
  font-size: 9px;
}

.fleet-add-btn__cost .construction-time__icon {
  width: 9px;
  height: 9px;
}

.ships-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  width: 100%;
  padding: 0;
  padding-inline-end: 4px;
  margin: 0;
  list-style: none;
}

.ships-list::-webkit-scrollbar {
  width: 6px;
}

.ships-list::-webkit-scrollbar-thumb {
  background: rgba(130, 210, 255, 0.2);
  border-radius: 4px;
}

.ships-list-row,
.science-ship-row {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(130, 210, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  color: #c8d8f0;
  cursor: pointer;
}

.ships-list-row.ship-selected,
.science-ship-row.ship-selected {
  border-color: rgba(64, 255, 220, 0.4);
  background: rgba(0, 212, 255, 0.06);
}

.fleet-row {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  padding: 10px 10px 10px 12px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(12, 28, 52, 0.72) 0%,
    rgba(6, 16, 34, 0.88) 55%,
    rgba(4, 12, 28, 0.92) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 14px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.fleet-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: rgba(100, 180, 255, 0.28);
  opacity: 0;
  transition: opacity 0.16s ease;
}

.fleet-row.fleet-selected {
  border-color: rgba(255, 150, 90, 0.5);
  background: linear-gradient(
    135deg,
    rgba(48, 28, 18, 0.55) 0%,
    rgba(22, 14, 28, 0.9) 50%,
    rgba(12, 10, 24, 0.95) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 200, 140, 0.08),
    0 0 0 1px rgba(255, 140, 70, 0.12),
    0 6px 18px rgba(0, 0, 0, 0.28);
}

.fleet-row.fleet-selected::before {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 170, 90, 0.95) 0%,
    rgba(255, 110, 60, 0.85) 100%
  );
}

.fleet-row:hover:not(.fleet-selected) {
  border-color: rgba(130, 210, 255, 0.22);
  background: linear-gradient(
    135deg,
    rgba(16, 36, 62, 0.78) 0%,
    rgba(8, 22, 44, 0.92) 100%
  );
}

.ships-list-row-main,
.science-ship-row-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  flex: 1;
  min-width: 0;
}

.fleet-card__main {
  align-items: center;
  gap: 10px;
  min-height: 36px;
}

.fleet-card__icon-wrap {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  overflow: visible;
}

.fleet-card__icon {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.fleet-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.fleet-card__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(240, 248, 255, 0.98);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ship-list-icon {
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}

.ships-list-row-title,
.science-ship-row-title {
  letter-spacing: 0.01em;
  font-weight: 600;
}

.fleet-add-btn {
  position: relative;
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 80px;
  max-width: 92px;
  min-height: 44px;
  padding: 6px 10px;
  overflow: hidden;
  line-height: 1.15;
  color: rgba(230, 248, 255, 0.95);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 10px;
  background: linear-gradient(
    160deg,
    rgba(10, 32, 56, 0.95) 0%,
    rgba(6, 18, 38, 0.98) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition:
    border-color 0.14s ease,
    background 0.14s ease,
    transform 0.12s ease;
}

.fleet-add-btn.is-building {
  cursor: default;
  border-color: rgba(0, 212, 255, 0.42);
}

.fleet-add-btn__progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(0, 180, 255, 0.22) 0%,
    rgba(0, 230, 200, 0.32) 55%,
    rgba(120, 200, 255, 0.26) 100%
  );
  box-shadow: inset 0 0 10px rgba(0, 220, 255, 0.12);
  pointer-events: none;
  z-index: 0;
  transition: width 0.12s linear;
}

.fleet-add-btn__label,
.fleet-add-btn__cost {
  position: relative;
  z-index: 1;
}

.fleet-add-btn__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.fleet-add-btn__cost {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 9px;
  font-weight: 600;
  color: rgba(160, 240, 255, 0.9);
}

.fleet-add-btn__cost .resource-hud__icon {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
}

.fleet-add-btn:hover:not(:disabled):not(.is-building) {
  border-color: rgba(0, 230, 255, 0.45);
  background: linear-gradient(
    160deg,
    rgba(14, 42, 68, 0.98) 0%,
    rgba(8, 26, 48, 1) 100%
  );
  transform: translateY(-1px);
}

.fleet-add-btn:disabled:not(.is-building) {
  opacity: 0.45;
  cursor: not-allowed;
}

.ships-empty {
  margin: 0;
  color: rgba(160, 190, 230, 0.75);
  font-size: 12px;
  line-height: 1.4;
}

.empires-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  width: 100%;
  padding: 0;
  padding-inline-end: 4px;
  margin: 0;
  list-style: none;
}

.empires-list::-webkit-scrollbar {
  width: 6px;
}

.empires-list::-webkit-scrollbar-thumb {
  background: rgba(130, 210, 255, 0.2);
  border-radius: 4px;
}

.empire-row {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(130, 210, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  color: #c8d8f0;
  cursor: default;
}

.empire-row:hover,
.empire-row.empire-row--map-hover {
  border-color: rgba(130, 210, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.empire-row--defeated {
  opacity: 0.58;
  border-color: rgba(120, 130, 150, 0.14);
  background: rgba(0, 0, 0, 0.12);
}

.empire-row--defeated .empire-name,
.empire-row--defeated .empire-count {
  color: rgba(150, 160, 180, 0.72);
}

.empire-status--defeated {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 110, 110, 0.82);
  line-height: 1.25;
}

.empire-row .empire-swatch {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  box-shadow: 0 0 8px currentColor;
}

.empire-row-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.empire-name-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

.empire-row .empire-name {
  color: #c8d8f0;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.empire-row .empire-you-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #3ec8ff;
  line-height: 1.25;
}

.empire-row .empire-personality {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(160, 200, 255, 0.62);
  line-height: 1.25;
  overflow-wrap: break-word;
}

.empire-row .empire-count {
  color: rgba(160, 190, 230, 0.75);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  text-align: left;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.empire-count__economy {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  vertical-align: middle;
}

.empire-count__economy .resource-hud__icon {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
}

.empire-count__amount,
.empire-count__delta,
.empire-count__economy .resource-hud__sep {
  height: auto;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}

.empire-count__amount {
  color: #e8f4ff;
}

.empires-empty {
  margin: 0;
  color: rgba(160, 190, 230, 0.75);
  font-size: 12px;
  line-height: 1.4;
}

.map {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  display: block;
  cursor: grab;
}

.map:active {
  cursor: grabbing;
}

.system-context-menu {
  position: fixed;
  z-index: 12000;
  min-width: 168px;
  padding: 6px;
  border: 1px solid rgba(120, 160, 220, 0.28);
  border-radius: 12px;
  background: rgba(4, 10, 22, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  display: none;
}

.system-context-menu.visible {
  display: block;
}

.system-context-menu button * {
  pointer-events: none;
}

.system-context-menu button {
  display: block;
  width: 100%;
  min-height: 36px;
  margin: 0;
  padding: 8px 10px 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.12);
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.05) 0%, rgba(3, 12, 26, 0.92) 18%);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: left;
  color: rgba(220, 238, 255, 0.92);
  cursor: pointer;
}

.system-context-menu button[hidden] {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  border: 0 !important;
  overflow: hidden;
}

.system-context-menu button + button {
  margin-top: 4px;
}

.system-context-menu button[hidden] + button {
  margin-top: 0;
}

.system-context-menu button:hover:not(:disabled) {
  border-color: rgba(0, 212, 255, 0.35);
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.14) 0%, rgba(6, 18, 38, 0.96) 22%);
  box-shadow: inset 3px 0 0 rgba(0, 232, 255, 0.85);
}

.system-context-menu button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.context-menu__claim-inner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35em;
}

.context-menu__claim-cost {
  font-variant-numeric: tabular-nums;
  color: rgba(200, 220, 245, 0.88);
}

.context-menu__claim-cost-value {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.context-menu__resource-icon {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
}
