.tm-accordion {
	margin: 0 0 30px;
	> .accordion-section {
		margin-bottom: 20px;
		overflow: hidden;
	}
	.accordion-title {
		@include transit2;
		display: block;
		background-color: #fff;
		border: 1px solid #eeeeee;
		border-radius: 5px;
		padding: 15px 20px;
		font-size: 18px;
		font-weight: 700;
		text-decoration: none;
		line-height: 1.2;
		position: relative;
		cursor: pointer;
		&:hover {
			color: #ffffff;
			&:before {
				color: #ffffff;
			}
		}
		&:before {
			position: absolute;
			top: 50%;
			right: 24px;
			color: #dddddd;
			content: '\f0da';
			font-family: FontAwesome;
			font-weight: normal;
			transform: translate(0, -50%);
		}
	}
	.accordion-content {
		padding: 24px 0 10px 22px;
		display: none;
	}
	.accordion-section.active {
		.accordion-title {
			color: #ffffff;
			&:before {
				content: '\f0d8';
				color: #ffffff;
			}
		}
	}
}
