#popup {
    display: none;
    position: absolute;
    top: 10px;
    left: 60px;
    width: 90px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 5px;
    font-weight: bold;
    padding: 0.25em;
}
.center-align {
	align-self: center;
}
.tao-map-footer {
	display: grid;
	gap:0.5em;
	grid-template-columns: repeat( auto-fit, minmax(325px,1fr));
	margin-block-end: 1.5em;
}
.form-flex {
	display: flex;
	gap: 0.5em 1em;
	flex-wrap: wrap;
}

.flex-break {
  flex-basis: 100%;
  height: 0;
}

.tabs {
    position: relative;
    height: 245px;
}
.tab {
      float: left;
}
.tab-label {
      background: #a2afc4;
      padding: 0 0.5em;;
      border-top-right-radius: 5px;
      border-top-left-radius: 5px;
      border: 1px solid #ccc;
      margin-left: -1px;
      position: relative;
      left: 1px;
      font-size: 1.1rem;
}
.tab p {
	font-weight: 400;
	font-size: 0.8rem;
}
.tab [type=radio] {
      display: none;
}
.content {
      position: absolute;
      padding: 10px;
      border: none;
      border-bottom-right-radius: 5px;
      border-bottom-left-radius: 5px;
      border-top-right-radius: 5px;
      overflow: auto;
      top: 1.5em;
      left: 0;
}
.content > * {
      opacity: 0;
      transition:      all 0.4s ease;
}
.tab label {
	font-weight:700;
	font-size: 0.9rem;
}
.tab > [type=radio]:checked ~ label {
      background: white;
      border-bottom: 1px solid white;
      z-index: 2;
}
.tab > [type=radio]:not(:checked) ~ label {
      font-weight: 600;
}
.tab > [type=radio]:checked ~ label ~ .content {
      z-index: 1;
      border: 1px solid #ccc;
}
.tab > [type=radio]:checked ~ label ~ .content > * {
      opacity: 1;
}
