.whe-map-addon{
  position: relative;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.whe-map-addon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.whe-map-error{
  padding: 16px;
  border: 1px dashed #ccc;
  border-radius: 8px;
  background: #fff;
  color: #444;
  font: inherit;
}

.whe-map-addon-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 24px;
  align-items: start;
  --whe-pill-bg: #a72236;
  --whe-pill-text: #ffffff;
  --whe-pill-font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --whe-pill-font-size: 18px;
  --whe-pill-font-weight: 700;
  --whe-panel-border: #e04545;
  --whe-panel-bg: #ffffff;
  --whe-tab-bg: #fafafa;
  --whe-tab-border: #dddddd;
  --whe-tab-text: #111111;
  --whe-tab-active-bg: #a72236;
  --whe-tab-active-text: #ffffff;
  --whe-panel-font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --whe-panel-font-size: 16px;
}

.whe-map-addon-layout .whe-map-addon{
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.whe-map-tab-panel{
  border: 0;
  border-radius: 0;
  min-height: 100%;
  background: transparent;
  overflow: hidden;
  font-family: var(--whe-panel-font-family);
  font-size: var(--whe-panel-font-size);
  align-self: center;
}

.whe-map-tab-panel__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border-bottom: 0;
}

.whe-map-tab-panel__tabs{
  display: block;
}

.whe-map-tab-panel__tab{
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #5f1a25;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  cursor: pointer;
  color: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 700;
}

.whe-map-acc-item + .whe-map-acc-item{
  margin-top: 8px;
}

.whe-map-tab-panel__tab::before{
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.10);
  line-height: 1;
}

.whe-map-tab-panel__tab[aria-expanded="true"]::before{
  content: '−';
}

.whe-map-tab-panel__tab.is-active{
  border-color: rgba(255, 255, 255, 0.35);
  background: #5f1a25;
  color: #ffffff;
}

.whe-map-tab-panel__tab[aria-expanded="true"]{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.whe-map-tab-panel__close{
  display: none;
}

.whe-map-tab-panel__content{
  padding: 12px 14px;
  background: #ffffff;
  color: #2b2b2b;
  border: 1px solid #5f1a25;
  border-top: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

@media (max-width: 900px){
  .whe-map-addon-layout{
    grid-template-columns: 1fr;
  }

  .whe-map-tab-panel{
    align-self: stretch;
  }
}
