/* node title */
.panel-primary>.panel-heading {
    color: #ffffff;
    background-color: #008751;
    border-color: #008751;
}

/* question area for panels style */
.list-group-item-question {
	background-color: #008751;	
}

/* custom buton color for buttons style */

.btn-primary {
	color: #ffffff;
	background-color: #008751;
	border-color: #008751;
}

/* chevron in answers area of panels style 
you can change this to any of the icons in the FontAwesome set. Substitute the unicode value for the icon

The complete list icons are here:
http://fortawesome.github.io/Font-Awesome/icons/

In this example, we are using fa-arrow-right to overwrite fa-chevron.
fa-arrow-right has a unicode value of f061. See http://fortawesome.github.io/Font-Awesome/icon/arrow-right/

*/

.fa-chevron-right:before {
    content: "\f061";
}