@charset "ISO-8859-1";
.buildings-list{
    max-height: 600px;
    margin-bottom: 10px;
    //overflow:scroll;
    overflow-y:auto; 
    -webkit-overflow-scrolling: touch;
}

.persons-list{
    max-height: 400px;
    margin-bottom: 10px;
    //overflow:scroll;
    overflow-y:auto; 
    -webkit-overflow-scrolling: touch;
}

.contacts-list{
    height: 300px;
    //margin-bottom: 10px;
    //overflow:scroll;
    overflow-y:auto; 
    -webkit-overflow-scrolling: touch;
}
.contacts-list thead th {  
	position: sticky; 
	top: 0; 
	background: #fff;
}


.scrollable-menu {
	height: auto;
  	max-height: 200px;
  	overflow-x: hidden;
}

.mailbox-read-by {
  color: #999;
  font-size: 13px;
}

/*
.contacts-table{
	width: 100%;
}

.contacts-table tbody {	
    display:block;
    height:200px;
    overflow-y:auto;
    width: 100%;
}

.contacts-table thead tr {
	 display:block;
}
*/

/*
.table-fixed {
	 width: 100%;
}
.table-fixed tbody {
	 height: 200px;
	 overflow-y: auto;
	 width: 100%;
}
 .table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th {
	 display: block;
}
*/
/*
 .table-fixed tbody td {
	 float: left;
}
 .table-fixed thead tr th {
	 float: left;
}
*/

/*
.table-fixed thead {
	display:block;
	width:100%;
}
.table-fixed tbody {
	display:block;
	height: 100px;    
    overflow-y: auto;    
}
*/

/*
.table-responsive {
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
    overflow-x: auto;
    overflow-y: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #DDD;
    position: relative;
}

table thead {
   position: fixed;
   width: auto;
   overflow: auto;
}
*/

.tableFixHead          
{ 
	overflow-y: auto; 
	height: 600px; 
}
.tableFixHead thead th { 
	position: sticky; 
	top: 0; 
	background:white;
}


#staging-dropzone {
    background-color: #cfc;
    border: solid 3px #9c9;
    color: #9c9;
    min-height: 50px;
    padding: 20px;
    text-shadow: 1px 1px 0 #fff;
}
#staging-items:empty::before {
    color: #ccc;
    content:"(File counts will be shown here.)";
}

.top-buffer { margin-top:20px; }

.fa.pisca {
    //font-size: 30px;
    //color: red;
    opacity: 0;
    animation: anima 1s ease infinite;
}
@keyframes anima {
    to {
        opacity: 1;
    }
}

.building-list-group{
    max-height: 300px;
    margin-bottom: 10px;
    overflow:scroll;
    -webkit-overflow-scrolling: touch;
}

.edit-table tbody .tools{
	display:none;
}
.edit-table tbody tr:hover .tools{
	display:inline-block;
}
.edit-table tbody .tools > .fa,
.edit-table tbody .tools > .glyphicon,
.edit-table tbody .tools > .ion {
  margin-right: 20px;
  cursor: pointer;
}

.content-stats {
  /*min-height: 250px;*/
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 0px;
}



/*
 * Component: Info Box Stat
 * -------------------
 */
.info-box-stat {
  display: block;
  min-height: 63px;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 15px;
}
.info-box-stat small {
  font-size: 14px;
}

.info-box-stat-icon {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;	
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  display: block;
  float: left;
  height: 63px;
  width: 70px;
  text-align: center;
  font-size: 45px;
  line-height: 70px;
  background: rgba(0, 0, 0, 0.2);
}
.info-box-stat-icon > img {
  max-width: 100%;
}

#avatar {
    /* This image is 687 wide by 1024 tall, similar to your aspect ratio */
    background-image: url('avatar-placeholder.png');
    
    /* make a square container */
    width: 100px;
    height: 100px;

    /* fill the container, preserving aspect ratio, and cropping to fit */
    background-size: cover;

    /* center the image vertically and horizontally */
    background-position: top center;

    /* round the edges to a circle with border radius 1/2 container size */
    border-radius: 50%;
}



