.vxcel-coverage-map {
  --vxcel-black: #141414;
  --vxcel-blue: #22BBFF;
  --vxcel-dark-blue: #005B8F;
  --vxcel-white: #ffffff;
  --vxcel-soft: #F6F6F6;
  width: 100%;
  font-family: Sen, Arial, sans-serif;
  contain: layout paint;
}

.vxcel-coverage-map,
.vxcel-coverage-map * {
  box-sizing: border-box;
}

.vxcel-coverage-map__panel {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(360px, 1.12fr);
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 48px;
}

.vxcel-coverage-map--dark .vxcel-coverage-map__panel {

}

.vxcel-coverage-map--light .vxcel-coverage-map__panel {
  background: #ffffff;
  border: 1px solid rgba(0,91,143,.14);
}



.vxcel-coverage-map__content,
.vxcel-coverage-map__visual {
  position: relative;
  z-index: 2;
}

.vxcel-coverage-map__eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--vxcel-blue);
  background: rgba(34,187,255,.10);
  border: 1px solid rgba(34,187,255,.28);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.vxcel-coverage-map__title {
  margin: 0 0 18px;
  color: var(--vxcel-white);
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.vxcel-coverage-map--light .vxcel-coverage-map__title {
  color: var(--vxcel-black);
}

.vxcel-coverage-map__intro {
  color: #EAEAEA;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 26px;
  font-weight: 500;
  max-width: 560px;
}

.vxcel-coverage-map--light .vxcel-coverage-map__intro {
  color: #444;
}

.vxcel-coverage-map__actions {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.vxcel-coverage-map__action-card,
.vxcel-coverage-map__calculator {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.vxcel-coverage-map__action-card--primary {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  color: #fff;
}

.vxcel-coverage-map__calculator {
  background: var(--vxcel-blue);
  color: #fff;
  border: 1px solid rgba(34,187,255,.35);
}

.vxcel-coverage-map__calculator:hover {
  transform: translateY(-2px);
  background: #1aaeee;
}

.vxcel-coverage-map--light .vxcel-coverage-map__action-card--primary {
  background: #F7F7F7;
  border-color: rgba(0,91,143,.10);
  color: var(--vxcel-black);
}

.vxcel-coverage-map__action-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--vxcel-black);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.vxcel-coverage-map__action-card strong,
.vxcel-coverage-map__calculator strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 4px;
}

.vxcel-coverage-map__action-card small,
.vxcel-coverage-map__calculator small {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.vxcel-coverage-map--light .vxcel-coverage-map__action-card small {
  color: #666;
}

.vxcel-coverage-map__stage {
  position: relative;
  width: 100%;
  min-height: var(--vxcel-map-height, 650px);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
}

.vxcel-coverage-map--light .vxcel-coverage-map__stage {
  background: #F7FBFE;
  border: 1px solid rgba(0,91,143,.12);
}

.vxcel-coverage-map__svg {
  display: block;
  width: 100%;
  height: var(--vxcel-map-height, 650px);
  overflow: visible;
}

.vxcel-map-region {
  fill: rgba(255,255,255,.92);
  stroke: rgba(34,187,255,.35);
  stroke-width: .45;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  outline: none;
  shape-rendering: geometricPrecision;
}

.vxcel-coverage-map--light .vxcel-map-region {
  fill: #f8fbfd;
  stroke: rgba(0,91,143,.22);
}

.vxcel-map-region.is-active,
.vxcel-map-region:focus {
  fill: rgba(34,187,255,.52);
  stroke: rgba(34,187,255,1);
  stroke-width: 1.15;
}

.vxcel-coverage-map[data-clickable="no"] .vxcel-map-region {
  cursor: default;
}

.vxcel-coverage-map__tooltip {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px));
  background: #ffffff;
  color: #141414;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  will-change: left, top, opacity;
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
  border: 1px solid rgba(34,187,255,.22);
  transition: opacity .16s ease, transform .16s ease;
}

.vxcel-coverage-map__stage:has(.vxcel-coverage-map__tooltip.is-visible) .vxcel-coverage-map__tooltip,
.vxcel-coverage-map__tooltip.is-visible {
  transform: translate(-50%, calc(-100% - 18px));
}

.vxcel-coverage-map__tooltip.is-visible {
  opacity: 1;
}

.vxcel-coverage-map__tooltip:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

.vxcel-coverage-map__stage:after {
  content: "Hover an area to view its name — click to open";
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  background: rgba(20,20,20,.78);
  color: #fff;
  border: 1px solid rgba(34,187,255,.22);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.vxcel-coverage-map--light .vxcel-coverage-map__stage:after {
  background: #fff;
  color: #141414;
}

@media (hover: none), (pointer: coarse) {
  .vxcel-coverage-map__stage:after {
    content: "Tap once to see the area name — tap again to open";
  }
}

.vxcel-coverage-map__loading,
.vxcel-coverage-map__error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 30px;
  font-family: Sen, Arial, sans-serif;
  font-weight: 800;
}

.vxcel-coverage-map--light .vxcel-coverage-map__loading,
.vxcel-coverage-map--light .vxcel-coverage-map__error {
  color: var(--vxcel-black);
}

.vxcel-coverage-map.is-loaded .vxcel-coverage-map__loading {
  display: none;
}

@media (hover: hover) {
  .vxcel-map-region:hover {
    fill: rgba(34,187,255,.52);
    stroke: rgba(34,187,255,1);
    stroke-width: 1.15;
  }
}

@media (max-width: 980px) {
  .vxcel-coverage-map__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px;
    border-radius: 24px;
  }

  .vxcel-coverage-map__intro,
  .vxcel-coverage-map__actions {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .vxcel-coverage-map__stage,
  .vxcel-coverage-map__svg {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 480px) {
  .vxcel-coverage-map__panel {
    padding: 24px;
    border-radius: 20px;
  }

  .vxcel-coverage-map__stage,
  .vxcel-coverage-map__svg {
    min-height: 440px;
    height: 440px;
  }

  .vxcel-coverage-map__action-card,
  .vxcel-coverage-map__calculator {
    align-items: flex-start;
  }
}


/* v2.1.3 no Ireland */
.vxcel-map-region[data-name="Isle of Man"]{fill:rgba(255,255,255,.96);stroke:rgba(34,187,255,.8);stroke-width:.8;}
.vxcel-map-region[data-name="Isle of Man"].is-active,.vxcel-map-region[data-name="Isle of Man"]:hover{fill:rgba(34,187,255,.58);stroke:#22BBFF;}
