@charset "utf-8";

.tab {
 	position: relative;
  	margin-bottom: 1px;
  	width: 100%;
  	color: #fff;
  	overflow: hidden;
}
.accordion_input {
  	position: absolute;
  	opacity: 0;
  	z-index: -1;
}
.accordion_label {
    position: relative;
    display: block;
    padding: .5em 3em 0em 1em;
	font-family: Raleway;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: left;
	font-weight: 500;
	font-size: 15px;
	color: #00468b;
    line-height: 1.5;
    cursor: pointer;
}
.blue label {
	margin-top: 2.5px;
}
.tab-content {
	max-height: 0;
	font-weight: 300;
	overflow-y: hidden;
	font-family: Roboto;
	text-align: left;
	color: #333;
	animation-name: fadeinleft;
	animation-duration: 1s;
	border-radius: 5px;
}
.blue .tab-content {
}
.tab-content p{
	text-align: left;
	font-size: 17px;
}
.tab-content ul{
	font-size: 17px;
}
input:checked ~ .tab-content {
  	max-height: 100rem;
	padding: 0rem 1rem 0rem 2.75rem;
}
label::after {
	position: absolute;
	right: 0;
	top: 0;
	padding-left: .5rem;
	display: block;
	width: 3rem;
	height: 2.5rem;
	line-height: 2.5;
	text-align: center;
}
input[type=checkbox] + label::before {
	display: inline-block;
	padding-right: 1em;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f0fe";
	color: #00468b;
}
input[type=checkbox]:checked + label::before {
	display: inline-block;
	padding-right: 1em;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; font-weight: 400; content: "\f146";
	color: #00468b;
}
/*input[type=radio] + label::after {
  	content: "\f10c";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: 100;
    text-decoration: inherit;
	color: #fff;
}
input[type=radio]:checked + label::after {
	content: "\f111";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: 100;
    text-decoration: inherit;
	color: #fff;
}*/
