/* ----- Tabbed Containers ----- */

.tabs {
  display: flex;
  flex-wrap: wrap;
  width:  100%;
}
.tab-input {
  position: absolute;
  opacity: 0;
}
.tab-label {
  width: auto;
  padding: 0.6rem 0.7rem 0.5rem;
  border-radius: var(--box-radius) var(--box-radius) 0 0;
  border-top 0.1rem solid black;
  border-left 0.1rem solid black;
  border-right 0.1rem solid black;
  background: lightgrey;
  cursor: pointer;
  font-weight: bold;
  z-index:  50;
  margin: 0 0.1rem;
  color: #6f6f6f;
}
.tab-label:hover {
  background: #d8d8d8;
}
.tab-label:active {
  background: #ccc;
}
.tab-input:focus + .tab-label {
  z-index: 1;
}
.tab-input:checked + .tab-label {
  background: #fff;
  color: #000;
}
.tab-panel {
  display: none;
  width:  100%;
  padding: 0.5rem 0.5rem 0.5rem;
  background: #fff;
  order:  99;
  box-shadow: 1rem 1rem 2.5rem #bfbfbf;
}
.tab-input:checked + .tab-label + .tab-panel {
  display: block;
}
