/*
 * Base structure
 */


html {
  position: relative;
  min-height: 100%;
}


/* Move down content because we have a fixed navbar that is 50px tall */
body {
  padding-top: 70px;
  margin-bottom: 50px;
}


datalist {
    display: none;
}

/*
 * Global add-ons
 */

.sub-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
  border: 0;
}

/*
 * 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,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  color: #fff;
  background-color: #428bca;
}


/*
 * Main content
 */

.main {
  padding: 20px;
}
@media (min-width: 768px) {
  .main {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.page-header {
  margin-top: 0;
}





.fullscreen_bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-position: 50% 50%;
	background-image: url('/img/background_3.jpg');
  z-index: -10;
}

.fullscreen_blank {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-position: 50% 50%;
	background-image: none;
  z-index: -10;
}

.height45 {
  height: 45px;
}


.table {
  table-layout: fixed;
}
th, td {
  font-size: 12px;
}

.kleine th, .kleine td {
    font-size: 7px;
}

.navbar-inverse {
  background-color: #343538;
}

.navbar-inverse .navbar-nav > li > a {
    color: #fff;
}

.navbar-inverse .navbar-nav > li > a:hover {
    color: #9d9d9d;
}


.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}

.huge {
  font-size: 40px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 50px;
  background-color: #706e6f;
}




@media (max-width: 480px) {
    .panel .fa-5x{
      font-size: 4em;
      margin-top: 10px;
    }
    .panel .fa-info-circle {
      display: none;
    }
    .panel {
      font-size: 8px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .panel .fa-5x {
      font-size: 4em;
      margin-top: 10px;
    }
    .panel .fa-info-circle {
      display: none;
    }
    .panel {
      font-size: 10px;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    .panel .fa-5x{
      font-size: 3em;
      margin-top: 10px;
    }
    .panel .fa-info-circle
     {
      display: none;
    }
    .panel {
      font-size: 11px;
    }
}

@media (min-width: 980px) {
  .panel .fa-5x{
    font-size: 5em;
  }
  .panel {
      font-size: 14px;
    }
}


/* CHAT */
.chat
{
    list-style: none;
    margin: 0;
    padding: 0;
}

.chat li
{
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #B3A9A9;
}

.chat li.left .chat-body
{
    margin-left: 60px;
}

.chat li.right .chat-body
{
    margin-right: 60px;
}


.chat li .chat-body p
{
    margin: 0;
    color: #777777;
}

.chat_avatar {
  border-radius: 5px;
  width: 60px;
  margin-right: 4px;
}

.chat_name {
  margin-right: 4px;
}

.panel .slidedown .glyphicon, .chat .glyphicon
{
    margin-right: 5px;
}

.panel-chat-body
{
    overflow-y: scroll;
    height: 400px;
}


/* END CHAT */

.fa-flask {
  transform: rotate(180deg);
}



