/* @author Tim himself */

.acor_list h4 {
	font-family: 'Poppins', sans-serif;
	color: #5E6264;
	font-size:14px;
	text-align: left;
	font-weight:500;
	padding: 8px 12px;
	padding-right: 40px;
	text-transform:uppercase;
	margin-top: 0;
	margin-bottom: 6px;
	background: #F7F7F7;
	border-bottom:1px solid #F2F2F2;
	transition: 0.25s all;
	position: relative;
	cursor: pointer;
}

.acor_list h4.active {
	color: #FFF;
	font-weight:500;
	margin-bottom: 10px;
	background: #C60303;
}

.acor_list h4::before {
	display:none;
	content: attr(data-prefix);
	font-size: 18px;
	margin-right: 9px;
}

.acor_list h4.alignLeft {
	padding-left: 35px;
}

.acor_list > div {
	display: none;
    font-family:'Poppins', sans-serif;
    font-size:14px;
    color:#737B9A;
	text-align:justify;
	padding:2% 5%;
	margin-bottom:9px;
	background: #FFF;
}

.acor_list li {
	list-style-type:square;
}

.acor_list .arrowDown {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 7.5px 0 7.5px;
	border-color: #C60303 transparent transparent transparent;
	position: absolute;
	bottom: 0;
	left: 40px;
	transition: 0.25s all;
	opacity: 0;
}

.acor_list .active .arrowDown {
	bottom: -8px;
	border-color: #C60303 transparent transparent transparent;
	opacity: 1;
}

.acor_list .collapseIcon {
	position: absolute;
	right: 20px;
	top: 45%;
	font-size: 25px;
	font-weight: 300;
	-ms-transform: translate(0, -50%);
	    transform: translate(0, -50%);
}

.acor_list .collapseIcon.alignLeft {
	right: initial;
	left: 20px;
}

/* ----- MEDIA QUERIES ----- */

@media (min-width: 1792px) {

	.acor_list h4 {
		font-size:19px;
		padding:11px 16px;
		padding-right:53px;
		margin-bottom:8px;
	}
	
	.acor_list h4.active {
		margin-bottom:13px;
	}
	
	.acor_list h4::before {
		font-size:24px;
		margin-right:12px;
	}
	
	.acor_list h4.alignLeft {
		padding-left:47px;
	}
	
	.acor_list > div {
		font-size:19px;
		margin-bottom:13px;
	}
	
	.acor_list .arrowDown {
		border-width:11px 10px 0 10px;
		left:53x;
	}
	
	.acor_list .active .arrowDown {
		bottom:-11px;
	}
	
	.acor_list .collapseIcon {
		right:27px;
		font-size:33px;
	}
	
	.acor_list .collapseIcon.alignLeft {
		left:27px;
	}
	
}