
.sym_tabs input[type=radio] {
	display:none;
}

.sym_tabs {
    width: 80%;
    float: none;
    list-style: none;
    position: relative;
    padding: 0;
    margin: 75px auto;
}

.sym_tabs li{
	float: left;
}

.sym_tabs label {
	display: block;
	padding: 10px 20px;
	color: #FFFFFF;
	font-size: 24px;
	font-weight: normal;
	background: #2c3e50;
	cursor: pointer;
	position: relative;
}

.sym_tabs label:hover {
	background: #3498db;
}

.sym_tab-content {
	z-index: 2;
	display: none;
	left: 0;
	width: 100%;
	font-size: 20px;
	line-height: 140%;
	padding: 15px;
	position: absolute;
	box-sizing: border-box;
	border:1px solid #ccc;
	border-top: 10px solid #08C;
	background-color:rgba(255, 255, 255, 0.85);
}

[id^=tab]:checked + label {
    background: #08C;
    color: white;
    top: 0;
}

[id^=tab]:checked ~ [id^=tab-content] {
    display: block;
}
