/*START ACCORDION FAQ*/
.accordion {
	list-style: none;
	padding: 0;
	margin: 0;
}
.accordion h3,
.accordion h2 {
	font-size: 0.9em;
}
.accordion li:last-child h3,
.accordion li:last-child h2
{
	border-bottom: none;
}
.accordion > li {
	margin-bottom: 0;
	padding: 0;
	overflow: hidden;
}
.accordion > li:before {
	content: none;
}
.accordion .product-spec
{
}
.accordion .product-spec .title:after {
    content: "\f067";
    font: normal normal normal 15px/1 FontAwesome;
    color: #ffffff;
    width: 20px;
    height: 20px;
    display: inline-block;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-size: 14px;
    position: absolute;
    right: 20px;
    margin-left: 10px;
    background-color: var(--color-primary);
    text-align: center;
    border-radius: 20px;
    padding-top: 4px;
}
.accordion .product-spec .title.expanded:after {
    content: "\f068";
}
.accordion .product-spec .title {
	position: relative;
	margin: 0;
	cursor: pointer;
	padding-right: 20px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	padding: 20px 40px 20px 20px;
	font-weight: 700;
	margin-bottom: 0.2em;
	text-transform: inherit;
	font-size: 1.1em;
	border: none;
	background-color: var(--color-lt);
	border-radius: 25px;
}

.accordion .product-spec .title:hover {
	color: var(--color-orange);
}
.accordion .product-spec .contentproduct {
	display: none;
	font-weight: 400;
	padding: 1.0em 25px 1.5em 20px;
    line-height: 1.7;
}
.accordion .product-spec h2:before {
	content:none;
}
/*END ACCORDION FAQ*/