ul {
	list-style-type: none;
    box-sizing: border-box;
}


/** =======================
 * Contenedor Principal
 ===========================*/
h1 {
 	color: #FFF;
 	font-size: 24px;
 	font-weight: 400;
 	text-align: center;
 	margin-top: 80px;
 }

h1 a {
 	color: #c12c42;
 	font-size: 16px;
 }

 .accordion {
 	/*width: 100%;*/
    padding-left: 10px;
 	background: #FFF;
 	-webkit-border-radius: 4px;
 	-moz-border-radius: 4px;
 	border-radius: 4px;
   /* overflow: hidden;*/
 }

.accordion .link {
	cursor: pointer;
	display: block;
	padding: 10px 0px 10px 0;
	color: #333;
	font-size: 12px;
	border-bottom: 1px solid #f0f0f0;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li:last-child .link {
	border-bottom: 0;
}

.accordion li i {
	position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
	right: 10px;
    width: 10px;
    height: 5px;
    background: url("../image/icon-filter-down.png") no-repeat center;
    background-size: 100%;
}

.accordion li.open .link {
	color: #333;
}

.accordion li.open i {
	color: #b63b4d;
}
.accordion li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/
 .submenu {
 	display: none;
 	font-size: 12px;
 }

 .submenu li {
 	border-bottom: 1px solid #f0f0f0;
    margin-left: 35px;
 }

 .submenu a {
 	display: block;
 	text-decoration: none;
 	color: #333;
 	padding: 7.5px 27px 7.5px 5px;
 	-webkit-transition: all 0.25s ease;
 	-o-transition: all 0.25s ease;
 	transition: all 0.25s ease;
    position: relative;
 }

.selected:after{
    content: " ";
    position: absolute;
    width: 10px;
    height: 7px;
    background: url("../image/icon-filter-sel.png") no-repeat center;
    background-size: 100%;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.submenu a p {
    overflow:hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 20px;
    max-height: 40px;
}
/**
 * header
 -----------------------------*/
.back{
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin-top: 12px;
    border:1px solid #dadadc;
    background: url("../image/icon-filter-back.png") no-repeat center;
    background-size: 50%;
}

