
.profile-intro ul li {
	margin-bottom: 1em;
}
.sections .btn-group {
	margin-bottom: 10px;
}
.sections .btn {
	padding: 0.8em 0.3em;
	font-size: 2em;
	line-height: 1.2em;
	border-radius: 6px;
}

.progress-indicator{
	height: 3px;
	margin-top: 20px;
	margin-bottom: 0;
}
.profile.question .post-nav-content {
	padding-bottom: 1px;
	border-bottom: none;
}
/*.group-questions .btn {
	padding-bottom: 0.3em;
}*/
.sections .progress {
	margin-top: 0.5em;
}
.sections .progress-bar {
	background-image: none;
	background-color: #000;
}

.sections .btn a, .sections .btn a:hover {
	text-decoration: none;
}

.sections .btn-chart {
	font-size: 8em;
}

.bp-nav-title {
	margin-top: 0px;
}

.bp-nav-title small {
	font-size: 80%;
}

.bp-nav {
	margin-right: 0px;
}


/* INCRESE BUTTON SIZES */
.scores .btn {
	padding: 0.9em 0.3em;
	font-size: 4em;
	line-height: 1.3333333;
	border-radius: 6px;
}
.scores p {
	height: 16px;
	padding: 5px;
	clear: both;
	font-size: 0.88em;
}
.scores .btn.active {
	font-size: 4.2em;
}

.question_stuff {
	margin-bottom: 20px;
}

.navbar {
	margin-bottom: 4px;
}

.ebp-nav-code h3 {
	margin: 5px 10px 0 20px;
	display: inline-block;
	float: left;
}
.demog{
	font-size: 0.8em;
	float: left;
	margin-top: 7px;
	max-width: 130px;
}
.ebp-nav-code img {
	width: 40px;
}
.ebp-nav-menu {
	max-height: 52px;
}
.ebp-nav .nav-pills li a:hover{
	background: #e0dcdc;
}
.nav-pills>li.active>a, .nav-pills>li.active>a:hover {
	background-color: #f0efef;
	color: black;
}
.nav-pills {
	margin-top: 8px;
}
.nav-pills li {
	height: 44px;
	white-space: nowrap;
}
.nav-pills li a {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	height: 44px;
	padding-top: 12px;
}

.profile .nav-justified>li {
    display: table-cell;
    width: 1%;
}

.post-nav-content {
	border: 1px solid #f0efef;
	border-radius: 4px;
	padding-bottom: 10px;
}
.post-nav-content .table {
	background-color: #fff;
}
.post-nav-content .breadcrumb {
	background-color: transparent;
}
.breadcrumb>li+li:before {
    content: "\3E";
 }
 

.ab-crumbs {
	/*centering*/
	display: inline-block;
	overflow: visible; /*need visible for dropdown*/
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag; 
	min-width: 900px;
}

.ab-crumbs .c {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 30px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.ab-crumbs .c:first-child {
	padding-left: 15px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.ab-crumbs .c:first-child:before {
	left: 14px;
}
.ab-crumbs .c:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.ab-crumbs .c.active, .ab-crumbs .c-clickable:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.ab-crumbs .c.active:after, .ab-crumbs .c-clickable:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the ab-crumbss using rotated pseudo elements*/
.ab-crumbs .c:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .ab-crumbs .c */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.1), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.ab-crumbs .c:last-child:after {
	content: none;
}
/*to show numbers*/
.ab-crumbs .c .num {
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
	text-align: center;
}

.ab-flat .c, .ab-flat .c:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.ab-flat .c .num {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
	color: black;
}
.ab-flat .c-clickable:hover, .ab-flat .c.active, 
.ab-flat .c-clickable:hover:after, .ab-flat .c.active:after{
	background: #008ed7;
}
.ab-flat .c-clickable:hover>a, .ab-flat .c.active>a, .ab-flat .dropdown-menu .active a {
	color: #fff;
}

.ab-flat .c.active-ish, .ab-flat .c.active-ish:after{
	background: #b6e6ff;
}
 
.ab-flat .c a:hover {
	text-decoration: none;
}
.ab-crumbs .c.c-with-circle {
	padding: 0 10px 0 60px;
}
.ab-crumbs .c a {
	display: block;
}
.ab-crumbs .dropdown-menu a {
	color: #000;
}


.assess-nav{
	border-bottom: 1px solid #f0efef;
	height: 37px;
	margin-bottom: 15px;
	text-align: left;
}

.ebp-edit .form-group {
	margin-top: 15px;
}

body.profile.list .post-nav-content {
	padding: 10px;
}