/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  /* Ensure wrapping */
}
.tabs label {
  order: 1;
  /* Put the labels first */
  display: block;
  /* padding: 1rem 2rem; */
  padding: 0.5rem 2rem;
  margin-right: 0.2rem;
  cursor: pointer;
  background: #0075a4;
  font-weight: bold;
  transition: background ease 0.2s;
}
.tabs .tab {
  order: 99;
  /* Put the tabs last */
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
  background: #f7f6f2;
}
.tabs input[type="radio"] {
  display: none;
}
.tabs input[type="radio"]:checked + label {
  background:#f7f6f2;
}
.tabs input[type="radio"]:checked + label + .tab {
  display: block;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
      order: initial;
  }
  .tabs label {
      width: 100%;
      margin-right: 0;
      margin-top: 0.2rem;
  }
}

/* Generic Styling */
.tabs_section {
  background: #fff;
  /* min-height: 32vh; */
  min-height: 26vh;
  box-sizing: border-box;
  /* padding-top: 3vh; */
  padding-top: 1vh;
  font-weight: 300;
  line-height: 1.5;
  /* max-width: 60rem; */
  max-width: 70rem;
  margin: 0 auto;
  /* font-size: 112%; */
  font-size: 100%;
}
