/*
 * 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;
}
.nav-sidebar > .active > a {
  color: #fff;
  background-color: #428bca;
}


/*
 * 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%;
}
.nav>li>a:hover, .nav>li>a:focus{
    background-color: #428bca !important;
}

.overlay{
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: 1000;
}

.inoverlay{
    font-size: 33px;
    color: white;
    background-color: #000;
    opacity: 1;
    display: block;
    position: fixed;
    clear: both;
    z-index: 1001;
    top: 20%;
    left: 25%;
    padding: 20px;
    box-shadow: 0px 0px 10px 6px grey;
    border-radius: 7px;
}

.scrollable_list{
    height: 200px;
    overflow-y: scroll;
    width: auto;
    max-width: 300px;
}

.scrollable_list div{
    display: block;
}

.totop{
    margin-top: -22px;
}

#form_create_new_report tr td:first-child{
    width: 25%;
}

#suggest{
    display: none;
    position: absolute;
    z-index: 2;
    background-color: #f0f0f0;
    width: 300px;
    border: 1px solid #808080;
    box-shadow: 1px 1px 2px 0px;
}

#suggest ul{
    list-style-type: none;
    margin-left: -20px;
}

#suggest ul li{
    padding: 10px;
}

.jumbotron{
    background-color: #d9edf7;
    color: #0a628e;
}

.jumbotron-danger{
    color: #a94442;
    background-color: #f2dede;
}

.navbar_dropdown{
    background-color: #101010;
}

.navbar_dropdown:hover{
    background-color: #428bca;
}

.navbar_dropdown button{
    background-color: #101010;
    border: none;
    color: #9d9d9d;
    line-height: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.sidebar-icon{
    background-image: url('/images/sidebar-icons.png');
    display: block;
    float: left;
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.ico-report{
    background-position: 0 0;
}

.ico-report-chart{
    background-position: 0 -25px;
}

.ico-chart{
    background-position: 0 -50px;
}

.ico-dashboard{
    background-position: 0 -75px;
}

.ico-manage{
    background-position: 0 -100px;
}

.background-fa{
    background-color: #fafafa;
}

.hide-opacity{
    opacity: 0;
}

.fadeable{
    transition: opacity 0.5s;
    margin: 10px 0;
}

p.big, a.big{
    font-size: 21px;
    font-weight: 200;
}

a.big{
    border-bottom: 3px dotted #337ab7;
}

a.big:hover{
    border-bottom: 3px solid #337ab7;
    text-decoration: none;
}

a.big:active, a.big:focus{
    text-decoration: none;
    outline: none;
}

.row.downed{
    margin-top: 20px;
}