/* initial state -------------------------------------------------------- */
.aside-block,
.region-block {
  display: none;  
  margin-block-start: 0;
}

/* when JS toggles .is-active ------------------------------------------ */
/* when JS adds .is-active, block becomes visible + fades in */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.aside-block.is-active,
.region-block.is-active {
  display: block;
  animation: fadeIn .3s ease-in-out backwards;
}

/* Region blocks - general */
.region-block .wp-block-columns,
.region-block .wp-block-group {
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* === Fla-Shop tooltip makeover ================================*/
.washingtonHtml5MapContainer .fm-tooltip {
  /* bubble */
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
  border: none;
  font: 600 18px/1.2 'Lato', sans-serif;
  background:#fff;
  color:#001d52;
  pointer-events: none;
}

.washingtonHtml5MapContainer .fm-tooltip-name {
  text-align: center !important;
}

/* arrow (white speech-bubble caret) */
.washingtonHtml5MapContainer .fm-tooltip::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 4px 6px rgba(0,0,0,.05);
}

/* accessibility: keep text crisp on dark yellow fill */
.washingtonHtml5MapContainer .fm-tooltip[aria-hidden="true"]{
  display: none;
}

/* Block styling */
.aside-default {
  margin-bottom: 64px;
}

.info-note p {
  margin-bottom: 0;
  padding: 22px 38px 28px 84px;
  border-radius: 4px;
  background: transparent url('../images/icon_arrow.png') 28px 26px no-repeat;
  background-size: 31px auto;
}
