.tabs {
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  font-family: sans-serif;
}

.tabs__radio {
  display: none;
}

.tabs__label {
  font-weight: normal;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #dddddd;
}

.tabs__label:hover {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #dddddd;
  background-color: #dddddd;
  border-radius: 5px 5px 0px 0px;
}

.tabs__padding {
     flex: 1;
    border-bottom: 1px solid #dddddd;
}

.tabs__content {
  order: 1;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  line-height: 1.5;
  font-size: 0.9em;
  display: none;
}

.tabs__radio:checked + .tabs__label {
  font-weight: bold;
  border-radius: 5px 5px 0px 0px;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-bottom: none;
  background-color: #ffffff;
  
}

.tabs__radio:checked + .tabs__label + .tabs__content {
  padding-top: 20px;
  padding-bottom: 20px;
  display: initial;
}