@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
.tabs {
	display: flex;
	flex-wrap: wrap; /* make sure it wraps */
}
.tabs label {
	order: 1; /* Put the labels first*/
	display: block;
	width:300px;
	height:100px;
	margin-right: 0.2rem;
	cursor: pointer;
  background: #90CAF9;
  font-weight: 700;
	font-size: 1.25rem;
  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;
}
.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;
  }
}


/**
 * Generic Styling
*/
body {
  background: #eee;
  min-height: 100vh;
	box-sizing: border-box;
	padding-top: 10vh;
  font-family: sans-serif; 
  font-weight: 300;
  line-height: 1.5;
  max-width: 100rem;
  margin: 0 auto;
  font-size: 112%;
  
}



	


.no_wrap {
  text-align:center;
  color: #0ce;
}
.link {
  text-align:center;
}

