
/* Accordion styles */
.accordion-wrap{
	width: 100%;
	margin-bottom: 20px;
}


.accordion-title{
	margin: 30px 0 15px 0;
	font-size: 28px;
}

.tabs {
	border-radius: 0;
	overflow: hidden;
}

.tab {
	width: 100%;
	color: white;
	overflow: hidden;
	margin-bottom: 5px;
}
.tab-label {
	cursor: pointer;
	margin: 0;
	font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
	font-size: 18px;
	line-height: 42px;
	background: #f2f2f2;
	text-decoration: none;
	color: #2d3347;
	text-transform: uppercase;
	display: block;
	padding: 5px 5px 5px 50px;
	position: relative;
}
.tab-label:hover {
	background-color: #e1e1e1;
}
.tab-label::after {
	position: absolute;
	left: 20px;
	content: "\276F";
	font-size: 28px;
	-webkit-transition: all .35s;
	transition: all .35s;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.tab-content {
	display: block;
	float: left;
	width: 100%;
	max-height: 0;
	padding: 0 50px;
	color: #404040;
	background: #f2f2f2;
	-webkit-transition: all .35s;
	transition: all .35s;
}

.tab> input[type="checkbox"]{
	visibility: hidden;
	display: none;
}

.tab> input:checked + .tab-label {
	background: #e1e1e1;;
}
.tab> input:checked + .tab-label::after {
	left: 20px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.tab> input:checked ~ .tab-content {
	max-height: unset;
	padding: 1em 50px;
}
