/**
 * Tabs
 */

.tabs {
  display: flex;
  flex-wrap: wrap; //* make sure it wraps */
}

.tabs label {
  order: 1; /* Put the labels first */
  display: block;
  padding: 1rem 2rem;
  margin-right: 0.2rem;
  cursor: pointer;
  background: #ffffff;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  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: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 1px solid#ccc;
}

.tabs input[type='radio'] {
  display: none;
}

.tabs input[type='radio']:checked + label {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  top: 2px;
  position: relative;
  background: #fff;
  color: #009fe3;
}

.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;
  }
}
