.navbar {
  background-color: #3a5870;
  color: #fff;
}
.nav-logo {
  width: 210px;
  padding: 5px 10px;
  float: left;
}
.navbar h1 {
  font-size: 22px;
  float: right;
  margin-top: 12px;
  font-weight: bold;
  font-style: italic;
  padding-right: 20px;
}
.navbar-nav>li>a{
  color: #fff !important;
}
.navbar-nav>li.active>a, .navbar-nav>.open>a{
  color: #fff !important;
  background-color: #3a5870 !important;
}
.panel-heading h3 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.panel-green {
  background: green;
  color: #fff;
}
.panel-red {
  background: red;
  color: #fff;
}
.divider {
  height: 1px;
  width:100%;
  display:block; /* for use on default inline elements like span */
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  padding-left: 15px;
  padding-right: 15px;
}
footer {
	padding: 10px 10px 15px 10px;
	color: #888;
}
.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}