
section#details {
	width: 100%;
	background-color: #fff;
}
.aterm section#details .wrapper,
.eterm section#details .wrapper {
	width: 100%;
	padding: 45px 0;
}
section#details:after {
	display: table;
	content: "";
	clear: both;
}
section#details .detail {
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
}
section#details .detail:last-child {
	border-bottom: 1px solid #e5e5e5;
}
section#details .detail h3 {
	position: relative;
	display: block;
	padding: 19px 44px 19px 14px;
	font: bold 16px/22px Arial;
	color: #106d3b;
	border-top: 1px solid #e5e5e5;
	background-color: #fafafa;
	transition:all linear 0.15s;
	cursor: pointer;
}
section#details .detail h3:hover {
	background-color: #fff;
}
section#details .detail h3:after {
	position: absolute;
	top: 50%;
	right: 22px;
	display: block;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	content: '';
	border-top: 2px solid #dc3c36;
	border-right: 2px solid #dc3c36;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	transition: all 0.5s;
}
section#details .detail h3.opened:after {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
section#details .detail .content {
	display:none;
	padding: 10px 15px 0;
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	overflow: hidden;
}
section#details .detail .content p {
	margin-bottom: 10px;
}
section#details .detail .content a.multi-link {
	color: #106d3b;
}

/* Számozatlan lista */
section#details .detail .content ul {
	margin-bottom: 16px;
}
section#details .detail .content ul li {
	position: relative;
	display: block;
	padding: 0px 0px 0px 21px;
}
section#details .detail .content ul li:before {
	position: absolute;
	top: 8px;
	left: -2px;
	display: block;
	width: 8px;
	height: 8px;
	content: '';
	border-top: 2px solid #dc3c36;
	border-right: 2px solid #dc3c36;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
section#details .detail .content ul li a {
	color: #106d3b;
}
section#details .detail .content ul li a:hover {
	text-decoration: underline;
}
/* /Számozatlan lista */

/* Számozott lista */
section#details .detail .content ol {
	display: block;
	list-style-type: decimal;
	margin-bottom: 16px;
	padding-left: 18px;
}
section#details .detail .content ol li {
	padding-left: 4px;
}
section#details .detail .content ol li a {
	color: #106d3b;
}
section#details .detail .content ol li a:hover {
	text-decoration: underline;
}
/* /Számozott lista */


@media (min-width: 768px) {
section#details .wrapper {
	position: relative;
	margin: 0px auto;
	padding: 45px 15px;
}
}
@media (min-width: 970px) {
section#details .wrapper {
	max-width: 970px;
}
}
@media (min-width: 1170px) {
section#details .wrapper {
	max-width: 1170px;
}
}
