/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-map {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.block-map header {
  margin: 2rem 0 6rem;
}
.block-map h3 {
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--incidental);
}
@media (min-width: 1025px) {
  .block-map {
    flex-direction: row-reverse;
    gap: 8rem;
  }
  .block-map__map {
    flex-basis: 66.6%;
  }
  .block-map__text {
    flex-basis: 33.3%;
  }
}
.block-map table td {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-map table td:first-child {
  font-weight: 600;
  color: var(--wp--preset--color--blue-grey);
}
.block-map table tr.active td {
  color: var(--wp--preset--color--primary);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.block-map svg text {
  font-family: var(--wp--preset--font-family--primary);
}
.block-map svg g.hotspots circle {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  fill: var(--wp--preset--color--terracotta);
}
.block-map svg g.hotspots circle:hover, .block-map svg g.hotspots circle.active {
  r: 20;
  fill: var(--wp--preset--color--primary);
}
