/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@wordpress/scripts/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/@wordpress/scripts/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./resources/scss/leaflet-alltrails.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --color-argentina: #74ACDF;
  --color-bolivia: #D4A574;
  --color-chile: #E85D75;
  --color-colombia: #FDB462;
  --color-ecuador: #B3DE69;
  --color-peru: #BC80BD;
  --text-h1: clamp(1.5rem, 4vw, 2rem);
  --text-h2: clamp(1.25rem, 3vw, 1.5rem);
  --text-h3: clamp(1rem, 2.5vw, 1.25rem);
  --text-body: clamp(0.875rem, 2vw, 1rem);
  --text-small: clamp(0.75rem, 1.5vw, 0.875rem);
  --text-tiny: clamp(0.625rem, 1.2vw, 0.75rem);
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 0.75rem);
  --space-md: clamp(0.75rem, 1.5vw, 1rem);
  --space-lg: clamp(1rem, 2vw, 1.5rem);
  --space-xl: clamp(1.5rem, 3vw, 2rem);
  --space-2xl: clamp(2rem, 4vw, 3rem);
  --header-height: clamp(3.5rem, 6vh, 5rem);
  --left-panel-width: clamp(16rem, 22vw, 26rem);
  --bottom-panel-height: auto;
  --background: var(--wp--preset--color--base, #FFFFFF);
  --surface: var(--wp--preset--color--contrast-2, #F8FAFC);
  --border: var(--wp--preset--color--contrast-3, #E2E8F0);
  --text-primary: var(--wp--preset--color--contrast, #1E293B);
  --text-secondary: var(--wp--preset--color--contrast-2, #64748B);
  --text-muted: #94A3B8;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms cubic-bezier(0.4, 0.0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: var(--wp--preset--color--black, #000h);
    --surface: #1e293b;
    --border: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition-property: background, color, border, box-shadow, transform;
  transition-duration: var(--transition-base);
}

#trail-mapper-root {
  width: 100%;
  margin: auto;
  grid-template-columns: 1fr;
  display: grid;
  grid-template-rows: var(--header-height) 1fr var(--bottom-panel-height);
  grid-template-areas: "header" "main" "bottom";
  position: relative;
}
@media (min-width: 1200px) {
  #trail-mapper-root {
    max-width: 1200px;
    grid-template-areas: "header" "main" "bottom";
  }
}

.mapper-header {
  grid-area: header;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.mapper-main {
  grid-area: main;
  display: grid;
  grid-template-columns: var(--left-panel-width) 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  position: relative;
}

#left-panel,
.left-panel {
  background: var(--background);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.panel-content {
  padding: var(--space-lg);
  max-width: 100%;
  box-sizing: border-box;
}
.panel-content > * {
  max-width: 100%;
  box-sizing: border-box;
}

.map-container {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
}
@media (min-width: 768px) {
  .map-container {
    height: auto;
  }
}

#map {
  width: 100%;
  height: 100%;
}

.bottom-panel {
  grid-area: bottom;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-sm) 0;
}
@media (min-width: 768px) {
  .bottom-panel {
    padding: var(--space-lg);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: var(--space-md);
}

.header-logo {
  flex: 1 1 auto;
  min-width: 0;
}
.header-logo .mapper-title {
  font-size: var(--text-h2);
  font-weight: normal;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}
.header-logo .mapper-subtitle {
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin: 0.25rem 0 0 0;
  font-weight: 400;
}

.header-controls {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.btn-toggle-panel,
.btn-info {
  display: none;
  padding: var(--space-sm) var(--space-md);
  background: var(--wp--preset--color--primary, #2563EB);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--text-body);
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.btn-toggle-panel:hover,
.btn-info:hover {
  background: color-mix(in srgb, var(--wp--preset--color--primary, #2563EB) 80%, black);
  box-shadow: var(--shadow-md);
}
.btn-toggle-panel:active,
.btn-info:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-info {
  padding: var(--space-sm);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 1.25rem;
}

.noscroll {
  overflow: hidden;
}

.filter-section {
  margin-bottom: var(--space-lg);
  padding: 0;
  max-width: 100%;
}
.filter-section:last-child {
  margin-bottom: 0;
}
.filter-section .section-title {
  font-size: var(--text-h3);
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-section.statistics-section, .filter-section.region-filter-section {
  display: none;
}

.search-section,
.quick-filters-section,
.country-filter-section,
.segment-type-section,
.size-filters-section,
.region-filter-section,
.map-layers-section {
  margin-bottom: var(--space-lg);
}

.statistics-section,
.actions-section {
  margin-bottom: 0;
}

.segment-type-section {
  display: none;
}

.country-filters {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.search-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  padding-right: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-body);
  background: var(--background);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.search-input:focus {
  outline: 2px solid var(--wp--preset--color--primary, #2563EB);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn-clear-search {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.btn-clear-search:hover {
  color: var(--text-primary);
  background: var(--surface);
}

.quick-filters {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.btn-quick-filter {
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}
.btn-quick-filter:hover {
  background: var(--background);
  border-color: var(--wp--preset--color--primary, #2563EB);
  transform: translateX(2px);
}
.btn-quick-filter.active {
  background: var(--wp--preset--color--primary, #2563EB);
  color: white;
  border-color: transparent;
  font-weight: 600;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
}
.checkbox-wrapper .custom-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.checkbox-wrapper .custom-checkbox.checked {
  background: var(--wp--preset--color--primary, #2563EB);
  border-color: transparent;
}
.checkbox-wrapper .custom-checkbox.checked::after {
  content: "\13";
  color: white;
  font-size: 0.75rem;
}
.checkbox-wrapper label {
  font-size: var(--text-sm);
  cursor: pointer;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: var(--space-sm) 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color var(--transition-fast);
}
.accordion-header:hover {
  color: var(--wp--preset--color--primary, #2563EB);
}
.accordion-header .accordion-icon {
  display: none;
  transition: transform var(--transition-base);
  font-size: 0.75rem;
}
.accordion-header[aria-expanded=false] .accordion-icon {
  transform: rotate(-90deg);
}

.accordion-content,
.filter-content {
  overflow: hidden;
  max-height: 2000px;
  transition: max-height var(--transition-base) ease-out, opacity var(--transition-base) ease-out, padding var(--transition-base) ease-out;
  opacity: 1;
}
.accordion-content[aria-hidden=true],
.filter-content[aria-hidden=true] {
  max-height: 0 !important;
  opacity: 0;
  visibility: hidden;
  padding: 0 !important;
}

.country-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs);
  cursor: pointer;
  transition: background var(--transition-fast);
  border-radius: var(--radius-sm);
}
.country-checkbox-wrapper:hover {
  background: var(--surface);
}
.country-checkbox-wrapper input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: var(--wp--preset--color--primary, #2563EB);
}
.country-checkbox-wrapper .country-flag {
  font-size: 1.5rem;
  line-height: 1;
}
.country-checkbox-wrapper .country-name {
  flex: 1;
  font-size: var(--text-body);
  font-weight: 500;
}
.country-checkbox-wrapper .country-count {
  font-size: var(--text-small);
  color: var(--text-muted);
  font-weight: 500;
}

.radio-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  cursor: pointer;
}
.radio-wrapper input[type=radio] {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  accent-color: var(--wp--preset--color--primary, #2563EB);
}
.radio-wrapper .radio-label {
  font-size: var(--text-body);
  cursor: pointer;
}

.range-filter {
  margin-bottom: var(--space-md);
}
.range-filter:last-child {
  margin-bottom: 0;
}

.range-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--text-primary);
}

.range-values {
  font-size: var(--text-small);
  color: var(--text-secondary);
  font-weight: 500;
}

.range-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: 0.3rem;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  margin: 0.3rem;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--wp--preset--color--primary, #2563EB);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -0.5rem;
  box-shadow: var(--shadow-md);
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  background: var(--border);
  border-radius: var(--radius-full);
}
input[type=range]::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--wp--preset--color--primary, #2563EB);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  background: var(--border);
  border-radius: var(--radius-full);
}

.country-filter-actions,
.filter-actions,
.actions-section {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.btn-filter-action,
.btn-clear-filters,
.btn-reset-filters {
  flex: 1;
  padding: var(--space-xs) var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-filter-action:hover,
.btn-clear-filters:hover,
.btn-reset-filters:hover {
  background: var(--wp--preset--color--primary, #2563EB);
  color: white;
  border-color: transparent;
}

.region-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-body);
  background: var(--background);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.region-select:focus {
  outline: 2px solid var(--wp--preset--color--primary, #2563EB);
  border-color: transparent;
}

.map-layers-section .checkbox-wrapper {
  position: relative;
  padding-left: 3.5rem;
  min-height: 2rem;
  align-items: center;
}
.map-layers-section .checkbox-wrapper input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.map-layers-section .checkbox-wrapper input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 1.5rem;
  background: var(--border);
  border-radius: var(--radius-full);
  transition: background var(--transition-base);
  cursor: pointer;
}
.map-layers-section .checkbox-wrapper input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
  cursor: pointer;
}
.map-layers-section .checkbox-wrapper input[type=checkbox]:checked + span::before {
  background: var(--wp--preset--color--primary, #2563EB);
}
.map-layers-section .checkbox-wrapper input[type=checkbox]:checked + span::after {
  transform: translateY(-50%) translateX(1.5rem);
}
.map-layers-section .checkbox-wrapper input[type=checkbox]:focus + span::before {
  outline: 2px solid var(--wp--preset--color--primary, #2563EB);
  outline-offset: 2px;
}
.map-layers-section .checkbox-wrapper span {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 4rem;
}

.layer-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: var(--wp--preset--color--primary, #2563EB);
}

.filter-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: var(--wp--preset--color--primary, #2563EB);
}

.statistics-section {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--border);
}

.stats-chart {
  margin-top: var(--space-md);
  min-height: 100px;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  border: 1px dashed var(--border);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background: var(--surface);
  border-radius: var(--radius-md);
}

.stat-label {
  font-size: var(--text-small);
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-value {
  font-size: var(--text-h3);
  color: var(--text-primary);
  font-weight: 700;
}

.summary-panel {
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.summary-stat {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border);
}
.summary-stat:last-child {
  border-bottom: none;
}

.country-cards-container {
  display: flex;
  gap: var(--space-md);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  justify-content: center;
}

.country-card {
  min-width: clamp(7rem, 12vw, 11rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.country-card.active {
  border-color: var(--country-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--country-color) 8%, transparent), color-mix(in srgb, var(--country-color) 3%, transparent));
}
.country-card.active .country-count {
  color: var(--country-color);
  font-weight: 800;
}
.country-card .country-flag {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.country-card .country-code {
  font-size: var(--text-tiny);
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.country-card .country-count {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  transition: color var(--transition-base);
}
.country-card .country-bar {
  width: 100%;
  background: var(--country-color);
  opacity: 0.6;
  border-radius: var(--radius-sm);
  margin-top: auto;
  min-height: 0.375rem;
  transition: all var(--transition-base);
}
.country-card:hover .country-bar {
  opacity: 1;
  transform: scaleY(1.3);
}

.leaflet-popup-content-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.leaflet-popup-tip {
  box-shadow: var(--shadow-md);
}

.segment-popup {
  min-width: clamp(16rem, 32vw, 22rem);
  padding: var(--space-lg);
}
.segment-popup .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border);
}
.segment-popup .popup-header h3 {
  font-size: var(--text-h3);
  margin: 0;
  line-height: 1.3;
}
.segment-popup .popup-header .popup-id {
  font-size: var(--text-tiny);
  color: var(--text-muted);
  font-family: "SF Mono", "Monaco", "Courier New", monospace;
  background: var(--surface);
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
}
.segment-popup .popup-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.segment-popup .popup-body .popup-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border);
}
.segment-popup .popup-body .popup-row:last-child {
  border-bottom: none;
}
.segment-popup .popup-body .popup-label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 6rem;
  flex-shrink: 0;
}
.segment-popup .popup-body .popup-value {
  font-size: var(--text-small);
  color: var(--text-primary);
  text-align: right;
  font-weight: 500;
}
.segment-popup .popup-footer {
  display: flex;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 2px solid var(--border);
}
.segment-popup .popup-footer .popup-btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  background: var(--wp--preset--color--primary, #2563EB);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-small);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.segment-popup .popup-footer .popup-btn:hover {
  background: color-mix(in srgb, var(--wp--preset--color--primary, #2563EB) 80%, black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.segment-popup .popup-footer .popup-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(8px);
}
.loading-overlay .spinner {
  width: 3.5rem;
  height: 3.5rem;
  border: 0.3rem solid var(--border);
  border-top-color: var(--wp--preset--color--primary, #2563EB);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.88;
  }
}
.marker-dot.selected {
  animation: pulse 1.5s ease-in-out infinite;
}

@media (max-width: 48rem) {
  .btn-toggle-panel,
  .btn-info {
    display: flex;
  }
  .mapper-main {
    grid-template-columns: 1fr;
    position: relative;
  }
  #left-panel,
  .left-panel {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-width: 90vw;
    height: calc(100vh - var(--header-height));
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
  }
  #left-panel.open,
  .left-panel.open {
    transform: translateX(0);
    z-index: 1001;
  }
  .bottom-panel {
    height: auto;
    min-height: 5rem;
    max-height: 14rem;
  }
  .country-card {
    min-width: 4.5rem;
    padding: var(--space-md);
  }
  .country-card .country-flag {
    font-size: 2rem;
  }
  .country-card .country-count {
    font-size: 1.5rem;
  }
  .statistics-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .mapper-main {
    grid-template-columns: clamp(14rem, 18vw, 20rem) 1fr;
  }
}
@media (min-width: 64rem) {
  .country-card:hover .country-bar {
    transform: scaleY(1.5);
  }
}
*:focus {
  outline: 2px solid var(--wp--preset--color--primary, #2563EB);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/*# sourceMappingURL=leaflet-alltrails.css.map*/