/**
 * Tabs
 */
#tabs{
	padding: 80px 0;
}
#tabs h1{
	text-align: center;
	font-size: 50px;
	margin:0 0 32px 0;
}
.tabs {
	display: flex;
	width: 100%;
	flex-wrap: wrap; // make sure it wraps
}
.tabs label {
	order: 1; // Put the labels first
	display: block;
	flex:0 0 20%;
	padding: 14px 0;
	text-align: center;
	font-weight: normal;
	margin:0 2.5%;
	cursor: pointer;
  border-bottom: 4px solid #000000;
  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;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #fff;
	border-bottom: 4px solid #ffd600;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}
.tabs-icon{
	display: block;
	width: 80px;
	margin:0 auto 16px auto;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
    flex:0 0 90%;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}