/*
Plugin Name: CE Accordions
Description: Display accordions.
Version: 1.0
Author: Matt Bayliss
*/

/* accordion */
.brand-gradient {
    background-image: -webkit-linear-gradient(22deg, #144d15  30%, #144d15 80%);
    background-image: -o-linear-gradient(22deg, #144d15  30%, #144d15 80%);
    background-image: linear-gradient(22deg, #144d15  30%, #144d15 80%);
}

.ce_accordion {
	margin: 30px 0;
}

.ce_accordion .card-header {
	margin-bottom: 20px;
}

.ce_accordion .brand-gradient {
	border: none;
	padding: 20px;
	text-align: left;
	width: 100%;
}

.ce_accordion .brand-gradient p {
	margin: 0;
}

.ce_accordion .brand-gradient h3 {
	font-weight: 600;
	line-height: 31px;
	margin: 0;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ce_accordion .brand-gradient h3:after {
	content: '\f106';
	font-family: 'FontAwesome';
	position: absolute;
	right: 40px;
	font-size: 1.5em;
}

.ce_accordion .brand-gradient.collapsed h3:after {
	content: '\f107';
}

.ce_accordion .btn-link:focus,
.ce_accordion .btn-link:hover,
.ce_accordion .btn-link:active {
	text-decoration: none;
	color: #fff;
	background-image: linear-gradient(22deg, #49bf4d 30%, #49bf4d 80%);
	border: none;
}

@media screen and (max-width: 768px) {
	.ce_accordion .brand-gradient h3 {
		font-size: 1.17em;
	}
}
