/* Reform State Colours */
/* Pillars State Colours */
/* Untested Kits Colours */
.state-popup {
  background-color: white !important;
  color: #1A1B1E;
  border: 2px solid #1a1b1e;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: 80vw;
  min-height: 200px;
}
.state-popup .tooltip-close {
  right: 5px;
  top: 5px;
  position: absolute;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url("../img/close.svg");
  background-size: 16px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-position: center top;
  padding: 0;
}
.state-popup .tooltip-close:hover {
  background-color: transparent;
}
.state-popup .state-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1b1e;
  color: white;
  padding: 20px 40px;
  gap: 1rem;
}
.state-popup .state-popup__header h3 {
  font-family: "Barlow", serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 43px;
  margin-top: 0;
  margin-bottom: 0;
}
.state-popup .state-popup__header .wp-block-button__link {
  color: #1a1b1e;
  border: 2px solid;
}
.state-popup .state-popup__header .wp-block-button__link:hover {
  background: transparent;
  border-color: #fc4c02;
  color: #fc4c02;
}
.state-popup .state-popup__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0.5rem 40px;
}
.state-popup .state-popup__info-box,
.state-popup .state-popup__other {
  margin-top: 1rem;
}
.state-popup .state-popup__info-box h4,
.state-popup .state-popup__other h4 {
  font-family: "Barlow", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 0;
  margin-top: 0;
}
.state-popup .state-popup__info-box p,
.state-popup .state-popup__other p {
  font-family: "Source Serif Pro", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  margin-top: 0;
}
.state-popup .state-popup__info-box.state-popup__info-box-link,
.state-popup .state-popup__other.state-popup__info-box-link {
  display: none;
}
.state-popup .state-popup__latest-development {
  font-family: "Barlow", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 31px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 8px 40px 8px 80px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.state-popup .state-popup__latest-development:before {
  content: "";
  background-image: url("../img/clock-icon.svg");
  background-size: contain;
  width: 33px;
  height: 33px;
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
}
.state-popup .state-popup__other {
  padding: 16px 40px;
}
.state-popup .state-popup__other h4 {
  margin-bottom: 0.5rem;
}
.state-popup.no-latest-development .state-popup__latest-development,
.state-popup.no-latest-development .state-popup__other {
  display: none;
}

.maps-container .maps-content {
  position: relative;
}
.maps-container .maps-content #usa-map {
  max-height: 65vh;
  display: block;
  margin: 0 auto;
}
.maps-container .maps-content #usa-map .state {
  fill: #D0D0D0;
  stroke: #fff;
  stroke-width: 1;
  filter: none;
  transition: stroke 0.3s ease;
  cursor: pointer;
}
.maps-container .maps-content #usa-map .state.active {
  filter: url(#default-shadow);
  stroke: #1a1a1a;
}
.maps-container .maps-content #usa-map .label {
  display: none;
}
.maps-container .maps-content #usa-map .label .untested-kits-label,
.maps-container .maps-content #usa-map .label .pillar-score-label {
  display: none;
}
.maps-container .maps-content #usa-map .label rect {
  pointer-events: none;
}
.maps-container .maps-content #usa-map .label line {
  stroke-width: 1;
  stroke: #1a1a1a;
  pointer-events: none;
}
.maps-container .maps-content #usa-map .label text {
  font-family: "Barlow", serif;
  font-weight: bold;
  fill: #1a1b1e;
  stroke-width: 0;
  pointer-events: none;
  font-size: 12px;
}
.maps-container .maps-content[data-current-map=reform-status] #usa-map .state[data-reform-status="Full Reform"] {
  fill: #1c98c6;
}
.maps-container .maps-content[data-current-map=reform-status] #usa-map .state[data-reform-status="Some Reform"] {
  fill: #99dcf9;
}
.maps-container .maps-content[data-current-map=reform-status] #usa-map .state[data-reform-status="No Reform"] {
  fill: #fd7b44;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .state[data-pillar-score="6"] {
  fill: #4897C2;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .state[data-pillar-score="5"] {
  fill: #67A9CC;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .state[data-pillar-score="4"] {
  fill: #87BAD6;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .state[data-pillar-score="3"] {
  fill: #A7CCE1;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .state[data-pillar-score="2"] {
  fill: #C5DDEB;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .state[data-pillar-score="1"] {
  fill: #E2EEF5;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .state[data-pillar-score="0"] {
  fill: #ED8453;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .label {
  display: block;
}
.maps-container .maps-content[data-current-map=pillar-score] #usa-map .label .pillar-score-label {
  display: block;
}
.maps-container .maps-content[data-current-map=untested-kits] #usa-map .state[data-untested-kits-group=completed] {
  fill: #4897C2;
}
.maps-container .maps-content[data-current-map=untested-kits] #usa-map .state[data-untested-kits-group="1-to-999"] {
  fill: #FDF3EE;
}
.maps-container .maps-content[data-current-map=untested-kits] #usa-map .state[data-untested-kits-group="1000-to-4999"] {
  fill: #F9D6C6;
}
.maps-container .maps-content[data-current-map=untested-kits] #usa-map .state[data-untested-kits-group=above-5000] {
  fill: #F3AD8C;
}
.maps-container .maps-content[data-current-map=untested-kits] #usa-map .state[data-untested-kits-group=unknown] {
  fill: #ED8453;
}
.maps-container .maps-content[data-current-map=untested-kits] #usa-map .label {
  display: block;
}
.maps-container .maps-content[data-current-map=untested-kits] #usa-map .label .untested-kits-label {
  display: block;
}
.maps-container .maps-content .map-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.maps-container .maps-content .map-wrapper.popup-loading {
  pointer-events: none;
}
.maps-container .maps-content .map-wrapper .map-tooltip {
  opacity: 0;
  visibility: none;
  pointer-events: none;
  position: absolute;
  background: #fff;
  border: 2px solid #000;
  padding: 14px 8px;
  text-transform: uppercase;
  top: 0;
  left: 0;
  font-family: "Barlow", serif;
  font-weight: 700;
  line-height: 0;
  white-space: pre;
}
.maps-container .maps-content .map-wrapper .map-tooltip.active {
  opacity: 1;
  visibility: visible;
}

.map-filters {
  list-style: none;
  text-align: center;
  padding-left: 0;
}
.map-filters .map-filter-list {
  display: inline-block;
  padding: 14px 23px;
  border-bottom: 3px solid #cfd2db;
  box-sizing: border-box;
  margin: 0 -3px;
}
.map-filters .map-filter-list.current-tab {
  border-color: #fc4c02;
}
.map-filters .map-filter-list.current-tab a {
  color: #1a1b1e;
}
.map-filters .map-filter-list a {
  color: #888c97;
  font-family: "Barlow", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  align-items: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.map-filters .map-filter-list a:hover {
  color: #1a1b1e;
}
.map-filters .map-filter-list a:focus {
  outline: none;
}

.map-info {
  display: none;
  padding: 25px 25px 7px;
  margin: 30px auto 0;
  max-width: 640px;
  background: #ffffff;
  border: 1px solid #1a1b1e;
  flex-wrap: wrap;
}
.map-info[data-map-info=pillar-score] .map-info__list-item {
  min-width: 25%;
}
.map-info .map-info__list-item {
  font-family: "Barlow", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #1a1b1e;
  margin-bottom: 18px;
  vertical-align: middle;
  min-width: 33.3%;
  padding-right: 18px;
}
.map-info .map-info__list-item:before {
  content: "";
  background: #0c2f3c;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  margin-right: 14px;
  display: inline-block;
  vertical-align: middle;
}
.map-info .map-info__list-item.map-item-malibu:before {
  background: #99dcf9;
}
.map-info .map-info__list-item.map-item-curious-blue:before {
  background: #1c98c6;
}
.map-info .map-info__list-item.map-item-coral:before {
  background: #fd7b44;
}
.map-info .map-info__list-item.map-item-cream:before {
  background: #FDF3EE;
}
.map-info .map-info__list-item.map-item-pink:before {
  background: #F9D6C6;
}
.map-info .map-info__list-item.map-item-orange:before {
  background: #F3AD8C;
}
.map-info .map-info__list-item.map-item-red:before {
  background: #ED8453;
}
.map-info .map-info__list-item.map-item-dark-blue:before {
  background: #4897C2;
}
.map-info .map-info__list-item.map-item-mid-blue:before {
  background: #67A9CC;
}
.map-info .map-info__list-item.map-item-blue:before {
  background: #87BAD6;
}
.map-info .map-info__list-item.map-item-off-blue:before {
  background: #A7CCE1;
}
.map-info .map-info__list-item.map-item-light-blue:before {
  background: #C5DDEB;
}
.map-info .map-info__list-item.map-item-lightest-blue:before {
  background: #E2EEF5;
}

[data-current-map=reform-status] [data-map-info=reform-status],
[data-current-map=pillar-score] [data-map-info=pillar-score],
[data-current-map=untested-kits] [data-map-info=untested-kits] {
  display: flex;
}

.etb-dropdown-wrapper {
  position: relative;
  max-width: fit-content;
  margin: 30px auto 28px;
  display: none;
}
.etb-dropdown-wrapper:after {
  content: "";
  font-size: 17px;
  color: #333;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  pointer-events: none;
  background-image: url("../img/down-arrow.svg");
  background-size: contain;
  width: 24px;
  height: 24px;
}
.etb-dropdown-wrapper .etb-dropdown {
  background: #cfd2db;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  display: flex;
  padding: 12px 40px 13px 19px;
  font-family: "Barlow", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  align-items: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1b1e;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
.etb-dropdown-wrapper .etb-dropdown:focus {
  outline: none;
}
.etb-dropdown-wrapper .etb-dropdown::-ms-expand {
  display: none;
}

@media screen and (max-width: 768px) {
  .map-info {
    max-width: none;
  }

  .labels {
    display: none;
  }

  .state-popup {
    top: 10px;
  }
}
@media screen and (max-width: 600px) {
  .map-filter-list {
    padding: 7px 8px;
  }
  .map-filter-list .map-filter {
    font-size: 13px;
  }

  .maps-content {
    margin-top: 0;
  }

  .etb-dropdown-wrapper {
    display: block;
  }

  .state-popup .state-popup__header a,
.state-popup .state-popup__latest-development,
.state-popup .state-popup__latest-development + div {
    display: none;
  }
  .state-popup .state-popup__info {
    grid-template-columns: 50% 50%;
    grid-column-gap: 20px;
  }
  .state-popup .state-popup__info-box.state-popup__info-box-link {
    display: block;
  }
  .state-popup .state-popup__info-box.state-popup__info-box-link a {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/*# sourceMappingURL=map-style.css.map */
