#map_container {
  width: 100%;
  max-width: 1000px;
  position: relative;
}

#loading {
  height: 50%;
  width: 50%;
  margin: auto;
}

svg #map{
  width: 800px;
  height: 600px;
}

#map_intro {
  font-family: "trade-gothic-next";
  font-size: 31.3px;
  font-style: normal;
  font-weight: 800;
  line-height: 31px;
  /* 99.042% */
  text-transform: uppercase;
}

#campus_radio_label {
  color: #333;
  font-family: "trade-gothic-next-condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
  /* 106.667% */
  text-transform: uppercase;
}

#impact_select_container .color_swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding-top: 2px;
}
#impact_select_container input {
    margin-bottom: 0.75rem;
}
#details_label {
  color: #333;
  font-family: "trade-gothic-next-condensed";
  font-size: 25.92px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  /* 113.744% */
  text-transform: uppercase;
}

.county {
  fill: #e0e0e0;
  stroke: #F7F7F7;
  stroke-width: 2px;
  cursor: pointer;
  transition: fill 0.3s;
}

.county:hover,
.county.active {
  fill: #B94700;
}

.county.active {
  /* I want to figure out how we could maybe bust a zoom or something here. */
  /* transform: scale(1.1);
  transform-origin: center;
  z-index: 2; */
}

/* Campus Icons */
.campus,
.rec {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.35));
  transition: all 0.15s;
}
.campus path,
.rec path {
  pointer-events: none;
}

.campus.active,
.rec.active {
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.25));
}

.tooltip {
  position: absolute;
  background: white;
  border: 1px solid #CBC4BC;
  padding: 5px 8px;
  font-size: 12px;
  pointer-events: none;
  display: none;
  color: black;
  opacity: 1 !important;
}

.hidden {
  display: none;
}

.shown,
.hidden.shown {
  display: block;
}

/* County DLs */
#county-info #county-info-list {
  margin-left: 0;
}
#county-info #county-info-list li .county_label {
  color: #000;
  font-family: "Tiempos Headline";
  font-size: 25.9px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
#county-info #county-info-list li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 8px;
}
#county-info #county-info-list li dl .county_attribute {
  -webkit-order: 0;
  order: 0;
  -webkit-flex: 0 1 calc(48% - 10px);
  flex: 0 1 calc(48% - 10px);
  -webkit-align-self: auto;
  align-self: auto;
  margin-bottom: 10px;
}
#county-info #county-info-list li dl .county_attribute dt {
  font-family: "trade-gothic-next";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
}
#county-info #county-info-list li dl .county_attribute dd {
  font-family: "trade-gothic-next";
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: capitalize;
}
