#map {
	height: 100%;
	min-height: 250px;
}

body {
	margin: 0;
	padding: 0px;
}

strong {
	font-weight: 600;
}

.topbar.nodata #no-data-message {
	display: block !important;
}

#loading, #no-data-message {
	position: absolute;
	top: 200px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.85);
	text-align: center;
	line-height: 150px;
	vertical-align: middle;
	display: none;
}

#loading.active {
	display: block;
}

.map {
	width: 100%;
	height: 70%;
}

table th {
	text-align: center;
	vertical-align: top;
}
table tbody {
	color: #fff;
}

/* .select-wrapper input.select-dropdown, .container-fluid input:not([type]), .container-fluid input[type=text], .container-fluid input[type=password], .container-fluid input[type=email], .container-fluid input[type=url], .container-fluid input[type=time], .container-fluid input[type=date], .container-fluid input[type=datetime], .container-fluid input[type=datetime-local], .container-fluid input[type=tel], .container-fluid input[type=number], .container-fluid input[type=search], .container-fluid textarea.materialize-textarea {
    box-sizing: border-box;
    border-radius: 2px;
    border: 1px solid #ccc;
    padding: 0px 8px;
    height: 2.5rem;
    margin-top: 4px;
}
.row {
	margin-bottom: 0px;
} */

.modal.bottom-sheet {
  max-height: calc(100% - 100px);
}
.modal.bottom-sheet.modal-fixed-footer {
  height: 100%;
  max-height: 100%;
}

/*
 * This needs to go into main.css
 */
 .btn-floating.btn-flat i {
   /* color: #888; */
 }
 /* .btn-flat:hover {
   background-color: #88888844;
 } */
 .btn-floating.btn-flat {
   border-radius: 20px;
 }
 .btn-flat:hover,
 .btn-flat:focus {
   background-color: transparent;
 }
 .btn-flat:hover i,
 .btn-flat:focus i {
   /* color: #343434; */
 }
 .btn-flat {
   position: relative;
   border-radius: 4px;
   /* overflow: visible; */
 }
 .btn-flat::before {
   position:absolute;
   content: '';
   display: block;
   opacity: 0;
   position: absolute;
   transition-duration: 200ms;
   transition-property: transform,opacity;
   z-index: -1;
   bottom: 0px;
   left: 0px;
   right: 0px;
   top: 0px;
   background: #88888822;
   border-radius:  4px;
   box-sizing: border-box;
   transform: scale(0);
 }
 .btn-floating.btn-flat::before {
   border-radius: 50%;
 }
 .btn-flat:hover::before {
   opacity: 1;
   transform: scale(1);
 }
