@charset "UTF-8";
input {
  position: absolute;
  opacity: 0;
}

/* Accordion styles */
.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 6px;
  background: LightGray;
  font-weight: bold;
  cursor: pointer;
}
.tab-label:hover {
  background: #bababa;
}
.tab-label:not(#tab-overall)::after {
  content: "❯";
  transition: all 0.5s;
}
.tab-content {
  max-height: 0;
  transition: all 0.5s;
}

button {
  border: solid 1px #bababa;
  background-color: #ededed;
  color: #a0a0a0;
  width: 100%;
  padding: 5px;
  font-size: 14px;
  cursor: pointer;
}
button:hover {
  background: gainsboro;
}

/*@media screen and (min-width: 600px) {
  button { font-size: 16px; }
}*/
input:checked + .tab-label {
  background: #bababa;
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: none;
}/*# sourceMappingURL=nav.css.map */