﻿.accordion {
	background: #D71D24;
	background: linear-gradient(90deg,rgba(215, 29, 36, 1) 0%, rgba(0, 0, 0, 1) 100%);
	border-radius: 10px;  
    border-style: solid;
    border-width: 1px;
	color: #ffffff;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	outline: none;
	transition: 0.4s;
}

.active, .accordion:hover {
	background: #C62828;
	background: linear-gradient(0deg, rgba(198, 40, 40, 1) 20%, rgba(0, 0, 0, 1) 80%);
}

.accordion:after {
	content: '\002B';
	color: #ffffff;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
	margin-top: 10px;
	padding: 0 0px;
	background-color: 000000;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}