/* Theme Name: The Project - Responsive Website Template
Author:HtmlCoder
Author URI:http://www.htmlcoder.me
Author e-mail:htmlcoder.me@gmail.com
Version:1.0.0
Created:December 2014
License URI:http://support.wrapbootstrap.com/
File Description: Place here your custom CSS styles
*/

.service-accordion {
	margin-bottom: 20px;
}

/* Individual accordion tab */
.service-item {
	margin-bottom: 8px;
	padding: 0;
	border: 1px solid #d5e5dc;
	border-radius: 4px;
	overflow: hidden;
	background-color: #ffffff;
}

/* Closed tab title */
.service-item summary {
	position: relative;
	display: block;
	margin: 0;
	padding: 12px 42px 12px 15px;
	cursor: pointer;
	list-style: none;
	color: #006b45;
	background-color: #eef7f2;
}

/* Remove the default browser arrow */
.service-item summary::-webkit-details-marker {
	display: none;
}

.service-item summary::marker {
	display: none;
}

/* Plus icon */
.service-item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	color: #006b45;
}

/* Hover effect */
.service-item summary:hover {
	background-color: #dcefe5;
}

/* Open tab title */
.service-item[open] summary {
	color: #ffffff;
	background-color: #006b45;
}

/* Minus icon when open */
.service-item[open] summary::after {
	content: "\2212";
	color: #ffffff;
}

/* Expanded content */
.service-content {
	padding: 15px;
	background-color: #ffffff;
	border-top: 1px solid #d5e5dc;
}

.service-content .contentarea:last-child {
	margin-bottom: 0;
}