@import url('//fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext');
@import url('//fonts.googleapis.com/css?family=Inconsolata&subset=latin,latin-ext');
/*
 * Base structure
 */

/* Move down content because we have a fixed navbar that is 50px tall */
body {
	padding-top: 50px;
}

/*
 * Global add-ons
 */

.sub-header {
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

/*
 * Sidebar
 */

/* Hide for mobile, show later */
.sidebar {
	display: none;
}
@media (min-width: 768px) {
	.sidebar {
		position: fixed;
		top: 51px;
		bottom: 0;
		left: 0;
		z-index: 1000;
		display: block;
		padding: 20px;
		overflow-x: hidden;
		overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
		background-color: #f5f5f5;
		border-right: 1px solid #eee;
	}
}

/* Sidebar navigation */
.nav-sidebar {
	margin-right: -21px; /* 20px padding + 1px border */
	margin-bottom: 20px;
	margin-left: -20px;
}
.nav-sidebar > li > a {
	padding-right: 20px;
	padding-left: 20px;
	font-size: 10pt;
}
.sidebar {
	background: #2A2F36;
}
.sidebar a {
	color: #fff;
}
.sidebar .active > a {
	background: darkred;
	color: #fff;
}
#menu_left a:hover {
	background: #454b54;
	color: #fff;
}
.sidebar .active > a:hover {
	background: rgba(139, 0, 0, 0.8);
	color: #ccc;
}
#menu_left a:focus {
	background-color: #2A2F36;
	color: #fff;
}

#menu_left a {
	color: #fff;
}
#menu_left .active a {
	color: white; background-color: darkred;
}

/*
 * Main content
 */

.main {
	padding: 20px;
}
@media (min-width: 768px) {
	.main {
		padding-right: 40px;
		padding-left: 40px;
	}
}
.main .page-header {
	margin-top: 0;
}


/*
 * Placeholder dashboard ideas
 */

.placeholders {
	margin-bottom: 30px;
	text-align: center;
}
.placeholders h4 {
	margin-bottom: 0;
}
.placeholder {
	margin-bottom: 20px;
}
.placeholder img {
	display: inline-block;
	border-radius: 50%;
}
body {
	font-family: Lato, Helvetica, Arial, Tahoma, sans-serif;
}

/*
 * modal shift fix; add media query for desktop later!
 */
.modal {
 overflow-y: auto;
}

.modal-open {
 overflow: auto;
}
/*
TABLE SHIT
*/
#custom-toolbar {
	float: right;
	margin: 10px;
}
th {
	text-align: center;
}
table td {
	font-family: 'Inconsolata', Consolas, 'Liberation Mono', Courier, monospace;
	font-size: 9pt;
}
#table_loading {
	text-align: center;
}
.pagination li a:hover {
	background-color: rgba(139, 0, 0, 0.8);
	border-color: rgba(139, 0, 0, 0.8);
	color: #fff;
}
.pagination .active a {
	background-color: darkred;
	border-color: rgba(139, 0, 0, 0.8);
}
.pagination .active a:hover {
	background-color: darkred;
	border-color: rgba(139, 0, 0, 0.8);
}
.pagination > li > a, .pagination > li > span {
	color: darkred;
}


/*
 BOOTSTRAP
*/
.btn-default, .form-control, .fixed-table-container {
	border-color: darkred;
}
.btn-primary {
	border-color: darkred; background-color: darkred;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active,
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
	background-color: rgba(139, 0, 0, 0.8);
	border-color: rgba(139, 0, 0, 0.6);
	color: #fff;
}
.form-control:focus {
	border-color: darkred;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(139, 0, 0, 0.6);
	outline: 0 none;
}

.dropdown-menu .active a {
	background-color: darkred;
}
.nav li a {
	color: darkred;
}
ul.dropdown-menu li.active a {
	background-color: darkred;
}
ul.dropdown-menu li.active a:hover {
	 background-color: rgba(139, 0, 0, 0.8);
}

.modal_info {
	float: left;
	font-weight: bold;
	color: darkgreen;
}