@font-face {
  font-family: "ChessSansVar";
  src: url("/fonts/ChessSansVF.ttf?v=9") format("truetype");
  font-weight: 100 900;
  font-stretch: 0% 200%;
  font-feature-settings: "ss06" 1 !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --tile-size: 20px;
  --grid-padding: 120px;
  --font-family-system: "ChessSansVar", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Helvetica, Arial, sans-serif;
  --font-family-heading: "ChessSansVar", "Montserrat", sans-serif;
  --board-light: #EBECD0;
  --board-dark: #739552;
  --board-light-highlight: #F7EE53;
  --board-dark-highlight: #C9CC22;
  --color-green-25: #F6FFE3;
  --color-green-50: #F3FFCF;
  --color-green-75: #EBFFBD;
  --color-green-100: #D8FA9D;
  --color-green-200: #B2E068;
  --color-green-300: #81B64C;
  --color-green-400: #5D9948;
  --color-green-500: #45753C;
  --color-green-600: #305730;
  --color-green-700: #204227;
  --color-green-800: #1C3724;
  --color-green-900: #162921;
  --color-neutrals-white: #FFFFFF;
  --color-neutrals-black: #000000;
  --color-gray-75: #F8F8F8;
  --color-gray-100: #F1F1F1;
  --color-gray-200: #E7E6E5;
  --color-gray-300: #DAD8D6;
  --color-gray-400: #BEBDB9;
  --color-gray-500: #8B8987;
  --color-gray-600: #666564;
  --color-gray-700: #4B4847;
  --color-gray-800: #312E2B;
  --color-gray-900: #262421;
}

.hidden {
  display: none;
}

html {
  background: #262421;
}

body {
  font-family: var(--font-family-system);
  overflow: hidden;
  font-size: 10px;
  user-select: none;
}

#chesscom-logo {
  position: absolute;
  top: 11px;
  left: 12px;
  height: 42px;
  width: auto;
  z-index: 3000;
  pointer-events: none;
  filter: drop-shadow(0 5px 4px rgba(0, 0, 0, 0.125));
}

.welcome-morph-container {
  position: fixed;
  z-index: 3000;
  background: #262421;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: width 200ms 25ms cubic-bezier(0.4, 0, 0.2, 1), height 200ms 25ms cubic-bezier(0.4, 0, 0.2, 1), top 200ms 25ms cubic-bezier(0.4, 0, 0.2, 1), bottom 200ms 25ms cubic-bezier(0.4, 0, 0.2, 1), border-radius 200ms 25ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-morph-container.collapsed {
  top: 20px;
  right: 20px;
  bottom: auto;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  cursor: pointer;
}
.welcome-morph-container.collapsed .welcome-morph-icon {
  opacity: 1;
  pointer-events: auto;
}
.welcome-morph-container.collapsed .welcome-content-wrapper {
  opacity: 0;
  pointer-events: none;
}
.welcome-morph-container.expanded {
  top: 20px;
  right: 20px;
  bottom: auto;
  width: 400px;
  height: calc(100vh - 40px);
  border-radius: 24px;
  transition: width 350ms cubic-bezier(0.4, 0, 0.2, 1), height 350ms cubic-bezier(0.4, 0, 0.2, 1), top 350ms cubic-bezier(0.4, 0, 0.2, 1), bottom 350ms cubic-bezier(0.4, 0, 0.2, 1), border-radius 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.welcome-morph-container.expanded .welcome-morph-icon {
  opacity: 0;
  pointer-events: none;
}
.welcome-morph-container.expanded .welcome-content-wrapper {
  transition: opacity 250ms 150ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  pointer-events: auto;
}

.welcome-morph-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.6);
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.welcome-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: inherit;
  transition: opacity 50ms cubic-bezier(0.4, 0, 0.2, 1);
}

#grid-container {
  position: relative;
  height: 100vh;
  overflow: auto;
  width: 100vw;
  cursor: pointer;
  padding: var(--grid-padding);
  background: #1a1816;
}

#grid-content {
  position: relative;
  background-image: url("/pattern.svg");
  background-size: calc(var(--tile-size) * 2) calc(var(--tile-size) * 2);
  background-position: 0 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.hover-indicator {
  position: absolute;
  width: var(--tile-size);
  height: var(--tile-size);
  background-color: rgba(255, 240, 0, 0.6);
  pointer-events: none;
  display: none;
}
.hover-indicator.active {
  display: block;
}

.move-indicator {
  position: absolute;
  width: var(--tile-size);
  height: var(--tile-size);
  background-color: rgba(255, 240, 0, 0.45);
  pointer-events: none;
  display: none;
  z-index: 0;
}
.move-indicator.active {
  display: block;
}
.move-indicator.trail-segment {
  background-color: rgba(255, 255, 0, 0.45);
}

.capture-icon {
  position: absolute;
  width: var(--tile-size);
  height: var(--tile-size);
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
  padding: 2px;
}

.lock-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--tile-size);
  height: var(--tile-size);
  background-color: rgba(255, 255, 0, 0.45);
  pointer-events: none;
  display: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}
.lock-indicator.active {
  display: block;
}
.lock-indicator.flash {
  display: block;
  animation: blocked-flash 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes blocked-flash {
  0% {
    background-color: rgba(255, 0, 0, 0);
  }
  50% {
    background-color: rgba(255, 0, 0, 0.7);
  }
  100% {
    background-color: rgba(255, 0, 0, 0);
  }
}
.capture-explosion {
  z-index: 100;
  pointer-events: none;
  position: absolute;
  height: 300%;
  width: 300%;
  left: -100%;
  top: -100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: captureExplosion 0.75s forwards;
}
.capture-explosion.blunder {
  background: rgba(255, 50, 50, 0.6);
  animation: captureExplosion 0.4s forwards;
}

@keyframes captureExplosion {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
#legal-move-markers {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
#legal-move-markers .legal-move-marker {
  position: absolute;
  width: var(--tile-size);
  height: var(--tile-size);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#legal-move-markers .legal-move-marker::before {
  content: "";
  width: 30%;
  height: 30%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
#legal-move-markers .legal-move-marker.capturable::before {
  width: 90%;
  height: 90%;
  background: transparent;
  border: calc(var(--tile-size) * 0.08) solid rgba(0, 0, 0, 0.2);
}

.lock-pawn {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--tile-size);
  height: var(--tile-size);
  background-image: url("/icons/pawn-green.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  transform: translateZ(0) scale(0);
  transform-origin: center center;
  transition: transform 100ms cubic-bezier(0, 0, 0.2, 1);
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.5));
}
.lock-pawn.active {
  transform: translateZ(0) scale(1.5);
}
.lock-pawn.no-transition {
  transition: none;
}

#world-pieces {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#world-pieces .world-piece {
  position: absolute;
  width: var(--tile-size);
  height: var(--tile-size);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
  pointer-events: auto;
  transition: left 200ms cubic-bezier(0.4, 0, 0.2, 1), top 200ms cubic-bezier(0.4, 0, 0.2, 1), filter 100ms cubic-bezier(0, 0, 0.2, 1);
  cursor: grab;
}
#world-pieces .world-piece:hover {
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}
#grid-container.locked #world-pieces .world-piece {
  cursor: default;
  pointer-events: none;
}
#world-pieces .world-piece.dragging {
  cursor: grabbing;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  z-index: 100;
  opacity: 0.9;
  transition: filter 100ms cubic-bezier(0, 0, 0.2, 1);
}
#world-pieces .world-icon {
  position: absolute;
  width: var(--tile-size);
  height: var(--tile-size);
  box-sizing: border-box;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transition: transform 100ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale(0);
}
#world-pieces .world-icon.show, #world-pieces .world-icon:hover {
  transform: scale(1.5);
  opacity: 1;
}
#grid-container.locked #world-pieces .world-icon {
  display: none;
}

#magnifier-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  pointer-events: none;
  display: none;
  z-index: 1000;
  will-change: transform;
  transform: translateZ(0);
}
#magnifier-wrapper.active {
  display: block;
}
#magnifier-wrapper #magnifier-ring {
  box-sizing: border-box;
  top: -1px;
  bottom: -1px;
  right: -1px;
  left: -1px;
  content: "";
  border-radius: 50%;
  position: absolute;
  border: 20px solid #262421;
  box-shadow: inset 0 5px 1px 2px rgba(0, 0, 0, 0.25);
  z-index: 50;
}
#magnifier-wrapper:before {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  inset: 21px;
  content: "";
  display: block;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(150, 255, 50, 0.1) 0%, rgba(120, 255, 50, 0) 40%, rgba(120, 255, 50, 0) 80%, rgba(150, 255, 50, 0.2) 95%);
}
#magnifier-wrapper #magnifier {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.25);
  background: #1a1816;
}
#magnifier-wrapper #magnifier .mini-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#magnifier-wrapper #magnifier .mini-grid .mini-tile {
  position: absolute;
  width: calc(var(--tile-size) * 6);
  height: calc(var(--tile-size) * 6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform, opacity;
}
#magnifier-wrapper #magnifier .mini-grid .mini-tile .mini-username {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 4px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  font-family: var(--font-family-heading);
  font-feature-settings: "ss05" 1;
  position: relative;
  z-index: 1;
  display: block;
  min-width: 140%;
  max-width: 140%;
  transform: rotate(-45deg);
}
#magnifier-wrapper #magnifier .mini-grid .mini-tile.light-square .mini-username {
  color: var(--board-dark);
}
#magnifier-wrapper #magnifier .mini-grid .mini-tile.dark-square .mini-username {
  color: var(--board-light);
}
#magnifier-wrapper #magnifier .mini-grid .mini-tile.center.light-square {
  background-color: var(--board-light-highlight) !important;
}
#magnifier-wrapper #magnifier .mini-grid .mini-tile.center.dark-square {
  background-color: var(--board-dark-highlight) !important;
}
#magnifier-wrapper .coordinate-wrapper {
  z-index: 1000;
  transform: translateX(-50%) translateY(-15%);
  position: absolute;
  bottom: 0px;
  left: 50%;
}
#magnifier-wrapper .coordinate {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #262421;
  padding: 8px 15px;
  border-radius: 18px;
  white-space: nowrap;
  font-family: var(--font-family-heading);
  font-feature-settings: "ss05" 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
#magnifier-wrapper .lock-icon {
  margin-right: -4px;
  width: 20px;
  height: 20px;
  fill: #fff;
  cursor: pointer;
  transition: opacity 100ms cubic-bezier(0, 0, 0.2, 1);
  flex-shrink: 0;
  opacity: 0.35;
}
#magnifier-wrapper .lock-icon.locked-icon {
  display: none;
}
#magnifier-wrapper .lock-icon.unlocked-icon {
  display: block;
}
#magnifier-wrapper .lock-icon.locked-icon.visible {
  display: block;
}
#magnifier-wrapper .lock-icon.unlocked-icon.hidden {
  display: none;
}
#magnifier-wrapper .lock-icon:hover {
  opacity: 0.7;
}

.welcome-card {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 100%;
  padding: 0;
  gap: 0;
  text-align: left;
}
.welcome-card .welcome-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}
.welcome-card .welcome-close-btn svg {
  padding: 8px;
  width: 40px;
  height: 40px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.welcome-card .welcome-close-btn:hover svg {
  fill: rgba(255, 255, 255, 0.8);
}
.welcome-card .welcome-header {
  padding: 24px 28px;
}
.welcome-card .welcome-header h1 {
  font-family: var(--font-family-heading);
  font-feature-settings: "ss05" 1;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  text-wrap: balance;
}
.welcome-card .welcome-header p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  text-wrap: balance;
}
.welcome-card .welcome-header p strong {
  color: #81B64C;
  font-weight: 700;
}
.welcome-card .welcome-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 24px;
}
.welcome-card .welcome-search-wrapper .welcome-search-icon {
  position: absolute;
  right: 12px;
  width: 1.6rem;
  height: 1.6rem;
  fill: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  opacity: 1;
  transition: opacity 100ms cubic-bezier(0, 0, 0.2, 1);
}
.welcome-card .welcome-search-wrapper .welcome-search-icon.hidden {
  opacity: 0;
}
.welcome-card .welcome-search-wrapper .welcome-clear-icon {
  position: absolute;
  right: 12px;
  width: 1.6rem;
  height: 1.6rem;
  fill: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity 100ms cubic-bezier(0, 0, 0.2, 1);
  pointer-events: none;
}
.welcome-card .welcome-search-wrapper .welcome-clear-icon.visible {
  opacity: 1;
  pointer-events: auto;
}
.welcome-card .welcome-search-wrapper .welcome-clear-icon:hover {
  fill: rgba(255, 255, 255, 0.8);
}
.welcome-card .welcome-search-wrapper .welcome-search-button {
  position: absolute;
  right: 8px;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #81B64C 0%, #5D9948 100%);
  box-shadow: inset 0 0.1rem 0 0 rgba(178, 224, 104, 0.4), inset 0 -0.1rem 0 0 #45753C, inset 0 0.2rem 0.4rem 0 rgba(178, 224, 104, 0.5), inset 0 -0.2rem 0.4rem 0 rgba(69, 117, 60, 0.5), 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.14), 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}
.welcome-card .welcome-search-wrapper .welcome-search-button svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: rgb(255, 255, 255);
  filter: drop-shadow(0 0.1rem 0 rgba(0, 0, 0, 0.2));
}
.welcome-card .welcome-search-wrapper .welcome-search-button:hover {
  background: linear-gradient(180deg, rgba(178, 224, 104, 0.5) 0%, transparent 100%), linear-gradient(180deg, #81B64C 0%, #5D9948 100%);
  box-shadow: inset 0 0.1rem 0 0 rgba(216, 250, 157, 0.4), inset 0 0.2rem 0.4rem 0 rgba(178, 224, 104, 0.5), inset 0 -0.1rem 0 0 #45753C, inset 0 -0.2rem 0.4rem 0 rgba(69, 117, 60, 0.5), 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.14), 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.1);
}
.welcome-card .welcome-search-wrapper .welcome-search-button:active {
  background: linear-gradient(180deg, #81B64C 0%, #45753C 100%);
  box-shadow: inset 0 -0.1rem 0 0 rgba(129, 182, 76, 0.4), inset 0 -0.2rem 0.4rem 0 rgba(129, 182, 76, 0.5), inset 0 -0.1rem 0 0 #45753C, inset 0 -0.2rem 0.4rem 0 rgba(48, 87, 48, 0.5), 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.14), 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.1);
}
.welcome-card .welcome-search-wrapper #welcome-search-input {
  width: 100%;
  height: 3.2rem;
  padding: 0.6rem 3.6rem 0.6rem 1.2rem;
  font-size: 1.1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0);
  border-radius: 0.55rem;
  outline: none;
  font-family: var(--font-family-system);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
}
.welcome-card .welcome-search-wrapper #welcome-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.welcome-card .welcome-search-wrapper #welcome-search-input:focus {
  background: rgba(255, 255, 255, 0.1);
}
.welcome-card .welcome-search-wrapper #welcome-search-input:hover:not(:focus) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.welcome-card .welcome-results {
  flex: 1;
  overflow-y: auto;
  background: #1c1a18;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  counter-reset: result-counter;
}
.welcome-card .welcome-results::-webkit-scrollbar {
  width: 4px;
}
.welcome-card .welcome-results::-webkit-scrollbar-track {
  background: transparent;
}
.welcome-card .welcome-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.welcome-card .welcome-results::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
.welcome-card .welcome-results .search-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  min-height: 100%;
}
.welcome-card .welcome-results .search-empty-state.hidden {
  display: none;
}
.welcome-card .welcome-results .search-empty-state .empty-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  opacity: 0.8;
}
.welcome-card .welcome-results .search-empty-state .empty-text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.welcome-card .welcome-results .search-empty-state .empty-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.welcome-card .welcome-results .search-result-item {
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-family-system);
  transition: background 100ms cubic-bezier(0, 0, 0.2, 1);
  counter-increment: result-counter;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.welcome-card .welcome-results .search-result-item:last-child {
  border-bottom: none;
}
.welcome-card .welcome-results .search-result-item.selected {
  background: rgba(129, 182, 76, 0.15);
}
.welcome-card .welcome-results .search-result-item:hover {
  background: rgba(255, 255, 255, 0.025);
}
.welcome-card .welcome-results .search-result-item .username {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.welcome-card .welcome-results .search-result-item .username .gang-icon {
  order: 10;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.welcome-card .welcome-results .search-result-item .tweet-link-btn {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  margin-right: -4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.welcome-card .welcome-results .search-result-item .tweet-link-btn img {
  width: 100%;
  height: 100%;
  filter: invert(1);
  transition: filter 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.welcome-card .welcome-results .search-result-item .tweet-link-btn:hover img {
  filter: invert(1);
}
.welcome-card .welcome-results .search-result-item:hover .user-actions {
  display: flex;
}
.welcome-card .welcome-results .search-result-item .user-actions {
  display: none;
}
.welcome-card .welcome-results .search-result-item .report-btn {
  width: 18px;
  height: 18px;
  margin-left: auto;
  margin-right: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer !important;
}
.welcome-card .welcome-results .search-result-item .report-btn svg {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0.4);
  transition: fill 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.welcome-card .welcome-results .search-result-item .report-btn:hover svg {
  fill: rgba(255, 119, 0, 0.85);
}
.welcome-card .welcome-results .search-result-item:hover .coord {
  display: none;
}
.welcome-card .welcome-results .search-result-item .coord {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  font-weight: 400;
  margin-left: auto;
}
.welcome-card .welcome-results .search-result-item .coord::before {
  opacity: 0.5;
  float: right;
  content: counter(result-counter);
  display: none;
}

#minimap {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 206px;
  height: 69px;
  background: #262421;
  border-radius: 4px;
  z-index: 999;
  pointer-events: none;
  box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.3);
  transform: scale(0.5);
  transform-origin: bottom left;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#minimap #minimap-viewport {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  will-change: transform;
}
