@charset "utf-8";

/**
 * Tabs
 */
.tabs {
	display: flex;
	flex-wrap: wrap; 
	max-width: 740px; 
	margin: auto;
}
.tabs label {
	order: 1; 
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
  	background: #90CAF9;
  	font-weight: bold;
  	transition: background ease 0.2s;
}
.tabs .tab {
  	order: 99; 
  	flex-grow: 1;
	width: 100%;
	display: none;
  	background: #fff;
	flex-wrap: wrap; 
	height: 50px;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #fff;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

.tabs input[type='radio']:checked+.tab_style{
  background: #00A0E9;
  color:#fff
}

.tab_style{
	margin: auto;
	width:45%;
	text-align: center;
	font-size: 1.5em;
	border: 1px solid #00A0E9;
	color: #00A0E9;
}




