@charset "utf-8";
/* CSS Accordion Document */

.accordion {
	background-color: #f2f2f2;
	color: #282828;
	cursor: pointer;
	padding: 16px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 18px;
	font-weight: 600;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-webkit-transition: 0.4s;
	transition: 0.4s
}
.accordion:after {
	border: 2px solid #646464;
	border-radius: 50%;
	content: '\002B';
	color: #777;
	float: left;
	font-size: 22px;
	height: 24px;
	line-height: 22px;
	margin-right: 15px;
	text-align: center;
	width: 24px
}
.active:after {
	content: "\2212"
}
.pricing-page_faq .panel {
	padding: 0 16px;
	max-height: 0;
	text-align: left;
	overflow: hidden;
	margin: 5px 0;
	-moz-transition: max-height 0.2s ease-out;
	-ms-transition: max-height 0.2s ease-out;
	-webkit-transition: max-height 0.2s ease-out;
	transition: max-height 0.2s ease-out;
}
.pricing-page_faq .panel:last-child {
	margin-bottom: 0
}


ul.faq-list {
	margin: 15px 0 15px 50px;
}
.faq-list li {
	color: #555;
    font-size: 17px;
    line-height: 1.7em;
    letter-spacing: .3px;
    margin: 0 0 10px;
    padding: 0;
}


.accordion-faq h6 {
	color: #282828;
    font-size: 24px;
    font-weight: 600;
	text-transform: none;
}
.accordion-faq h6 small {
	color: #282828;
}


@media only screen 
and (min-width: 320px) 
and (max-width: 500px) {
	.accordion {
		padding: 10px;
	}

	.accordion:after {
		display: none;
	}
}