body {
	font-family: 'Helvetica Neue', 'Open Sans', sans-serif;
}

/* Bootstrap adjustments */

.btn-secondary {
	border: 1px solid #ccc;
}

div.datepicker {
	margin-top: 70px;
}

.glyphicon {
	margin-right: 6px;
	font-size: 15px;
}

.label {
	display: inline-block;
}

a {
	color: #5599ee;
}

.navbar-default .navbar-nav > li > a {
	color: #5599ee;
}

/* outline */

.btn-outline {
    background-color: transparent;
    color: inherit;
    transition: all .5s;
}

.btn-primary.btn-outline {
    color: #428bca;
}

.btn-success.btn-outline {
    color: #5cb85c;
}

.btn-info.btn-outline {
    color: #5bc0de;
}

.btn-warning.btn-outline {
    color: #f0ad4e;
}

.btn-danger.btn-outline {
    color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
    color: #fff;
}

/* navbar */

.navbar-toggle {
	float: left;
	margin-left: 15px;
}

.navbar-nav > li > span {
	display: block;
	line-height: 120%;
	padding: 12px 16px;
}

.navbar-nav > li > a {
	display: block;
	padding: 20px;

	padding-left: 15px;
	padding-right: 15px;
}

.navbar-toggle {
	margin-top: 13px;
}

.table > tbody > .noborder > th {
	border-top: none;
}

a.logout {
	color: #a00;
}

a.logout:hover {
	color: #d00;
	text-decoration: none;
}


/* login */

#login {
	margin: auto;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;

	width: 300px;
	height: 350px;
	text-align: center;
}

div.login {
	font-size: 40px;
	font-weight: 200;
	
	margin-bottom: 50px;
}

.input-group-addon {
	width: 100px;
}

input[type='text'],
input[type='number'],
input[type='password'],
textarea {
	font-size: 16px;
	/* width: 180px; */
}

/* main */

div.logo {
	font-size: 30px;
	font-weight: 200;
	
	margin-top: 10px;
	margin-right: 10px;
	
	height: 50px;
}

img.user {
	width: 124px;
	border-radius: 62px;
}

img.usersmall {
	width: 40px;
	border-radius: 20px;
	margin-right: 15px;
}

body {
	max-width: 1024px;
}

nav div {
	max-width: 1024px;
}

#left {
	display: inline-block;
}

#right {
	display: inline-block;
	float: right;
}

#content {
	padding: 15px;
}

#csv {
	margin-left: 15px;
}

.back {
	 padding-bottom: 15px;
}

h1 {
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 24px;
	
	color: #aaa;
}

h2 {
	margin-top: 0;
	font-size: 16px;
}

.r {
	text-align: right;
}

.total {
	font-weight: bold;
	
	border-bottom: solid;
	border-bottom-width: 2px;
}

.table > tbody > tr.total > td {
	vertical-align: bottom;
	height: 50px;
}

.loading img {
	width: 100px;
	height: 100px;
}

.disclaimer {
	color: #aaa;
	font-size: 12px;
}

sup {
	color: #aaa;
}

.narrowshow {
	display: none;
}

.red {
	color: #a00 !important;
}

.green {
	color: #0a0 !important;
}

.pending {
	color: #aaa !important;
}

.gray {
	color: #aaa !important;
}

.cancelled {
	text-decoration: line-through;
}

.fixed-bottom {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1030;
	border-bottom: 3px solid #aaa;
	
	color: #aaa;
	font-size: 11px;
	padding-left: 15px;
	background-color: rgba(255, 255, 255, 1);
}




.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}