.autocomplete-field {
	position: relative;
}
.autocomplete-container {
	left:-6px;
	position: absolute;
	top:18px;
	z-index:1000;
}
.left-menu-logo {
	height: 39px;
	width: 150px;
}
.left-menu-logo img {
	display: none;
}
.left-menu-logo a img {
	margin: 0px 0px 0px 55px;
	max-width: 150px;
	width: 100%;
}
.animate-menu-button {
	height: 40px;
	width: 40px;
}
.animate-menu-button div {
	margin: 0px 0px 0px 0px;
}
.animate-menu-button div::after {
	bottom: -17px;
	background-image: url(/images/bm-logo.png);
	background-position: center;
	background-repeat: no-repeat;
	height: 40px;
}
.animate-menu-button.active {
	height: 30px;
	width: 30px;
}
.animate-menu-button.active div::after {
	background-image: none;
	height: 3px;
}
.animate-menu-button.active div::before {
	top: 5px;
}
.panel-heading h3 {
	color: #d2226b;
	font-family: 'BebasNeueRegular', sans-serif;
	font-size: 43px;
	padding: 20px 0px 20px 0px;
}
.panel-heading h3.no-margin {
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 10px 0px;
}
.amberface {
	font-size: 22px;
	color: #f0ad4e;
}
.greenface {
	font-size: 22px;
	color: #5cb85c;
}
.redface {
	font-size: 22px;
	color: #d9534f;
}
.sticky {
	position: fixed;
	margin-top: -17px;
	margin-left: 0px;
	padding-right: 84px !important;
	width: 100%;
	z-index: 1000;
}
.sticky .panel-heading {
	padding-top: 17px;
}
.sticky .panel-heading, .sticky .panel-body {
	background-color: #ffffff;
}
/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .sticky-content {
	padding-top: 236px;
}
nav.left-menu, nav.top-menu {
	z-index: 1001;
}
tr.collapse.in {
	display: table-row;
}
.table td.v-top {
	vertical-align: top;
}
.row-heading {
	cursor: pointer;
}

/* Tooltip container */
.hovertooltip {
	cursor: pointer;
	position: relative;
	display: inline-block;
}

/* Tooltip text */
.hovertooltip .hovertooltiptext {
	display: none;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px 5px;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	width: 240px;
}
/* Show the tooltip text when you mouse over the tooltip container */
.hovertooltip:hover .hovertooltiptext {
	display: block;
}
/* Add top tooltip and arrow to bottom of tooltip */
.hovertooltip .hovertooltiptext.hovertooltiptop {
	bottom: 150%;
	left: 50%;
	margin-left: -120px; /* Use half of the width (120/2 = 60), to center the tooltip */
}
.hovertooltip .hovertooltiptext.hovertooltiptop::after {
	content: " ";
	position: absolute;
	top: 100%; /* At the bottom of the tooltip */
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}
/* Add bottom tooltip and arrow to top of tooltip */
.hovertooltip .hovertooltiptext.hovertooltipbottom {
	top: 150%;
	left: 50%;
	margin-left: -120px; /* Use half of the width (120/2 = 60), to center the tooltip */
}
.hovertooltip .hovertooltiptext.hovertooltipbottom::after {
	content: " ";
	position: absolute;
	bottom: 100%;  /* At the top of the tooltip */
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
}
/* Add left tooltip and arrow to right of tooltip */
.hovertooltip .hovertooltiptext.hovertooltipleft {
	top: -5px;
	right: 110%;
}
.hovertooltip .hovertooltiptext.hovertooltipleft::after {
	content: " ";
	position: absolute;
	top: 15px;
	left: 100%; /* To the right of the tooltip */
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent transparent black;
}
/* Add right tooltip and arrow to left of tooltip */
.hovertooltip .hovertooltiptext.hovertooltipright {
	top: -5px;
	left: 110%;
}
.hovertooltip .hovertooltiptext.hovertooltipright::after {
	content: " ";
	position: absolute;
	top: 15px;
	right: 100%; /* To the left of the tooltip */
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent black transparent transparent;
}