

.logo {
  width: 100%;
  text-align: center;
}

.logo > img {
  margin: 100px auto;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity ease 0.5s;
}

.logo > img:hover {
  opacity: 0.7;
}

.glyphicon.text-muted {
  color: #ccc;
}


/**** Smart-table tweeks ****/

.table > tbody > tr > td {
  vertical-align: middle;
  padding: 4px;
}

.st-sort-ascent:before{
  content: '\25B2';
}

.st-sort-descent:before{
  content: '\25BC';
}


/**** UI.Bootstrap fix ****/

.nav, .pagination, .carousel, .panel-title a { cursor: pointer; }


/**** NAVBAR ****/

/* .navbar { min-height: 22px; border-radius: 0} 
.navbar .navbar-brand { padding: 2px 8px; font-size: 14px; line-height: 14px; } */
.navbar .navbar-nav > li > a { text-align: right; /* border-right: 1px solid #ddd; padding-top: 2px; padding-bottom: 2px; line-height: 16px */}

/**** LOGIN ****/

@import url(http://fonts.googleapis.com/css?family=Catamaran);

.login {
  padding: 30px;
  width: 100% !important;
  background-color: #F7F7F7;
  margin: 0 auto;
  overflow: hidden;
  font-family: 'Catamaran', sans-serif;
  border-radius: inherit;
}

.login input[type=text], input[type=password] {
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.login input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.login a:hover {
  opacity: 1.0;
}

.login a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
} 
