/* Make footer stick to the bottom of the page */
body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

main {
	flex: 1 0 auto;
}
/* IE hack for flex box to stick footer at the bottom of the page */
.flexboxtweener, .flexboxtweener>body {
	height: 100%;
}
/* Hover styling for collection items (on Reprts page) */
.collection li.collection-item:not(.active):hover {
	background-color: #ddd;
}
.collection li.collection-item {
	transition: .25s;
	cursor: pointer;
}
.collection li.collection-item span {
	color: #26a69a;
}
.collection li.collection-item.disabled {
	pointer-events: none;
	background-color: #DFDFDF !important;
	box-shadow: none;
	color: #9F9F9F !important;
	cursor: default;
}
/* Charity code text box */
#code {
	text-transform:uppercase
}
/* Remove padding on input boxes */
input.select-dropdown, input.datepicker, input.timepicker  {
	margin:0 !important;
}
/* Class used for datepickers and dropdowns in tables to reduce padding */
td.lesspad  {
	padding:3px 5px;
}
td.lesspad2  {
	padding:12px 5px;
}
.picker {
	position:fixed;
}
/* Reducing padding for materialize dropdown content and dropdown multiselect checkboxes */
.dropdown-content li>span {
	padding: 5px 0 5px 7px;
}
.dropdown-content li {
	min-height:34px;
}
/* side-nav padding was causing icons to shift up when page is resized */
.side-nav a {
	height:56px;
	line-height:56px;
}
@media only screen and (min-width: 601px) {
	.side-nav a {
		height:64px;
		line-height:64px;
	}
	nav i.material-icons {
		height: 64px;
		line-height: 64px;
	}
}
/* Added missing styling for week and month input types */
input[type=month], input[type=week] {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #9e9e9e;
	border-radius: 0;
	outline: none;
	height: 3rem;
	width: 100%;
	font-size: 1rem;
	margin: 0 0 15px 0;
	padding: 0;
	box-shadow: none;
	box-sizing: content-box;
	transition: all 0.3s;
}
input[type=month]:focus:not([readonly]), input[type=week]:focus:not([readonly]) {
	border-bottom: 1px solid #26a69a;
	box-shadow: 0 1px 0 0 #26a69a;
}
input[type=month]:focus:not([readonly]) + label, input[type=week]:focus:not([readonly]) + label {
	color: #26a69a;
}
/* Had to hardcode the logo icon container */
ul.side-nav li.logo {
	text-align: center;
	margin-top: 32px;
	margin-bottom: 90px;
}
#logo-container {
	height: 50px;
	margin-bottom: 32px;
	pointer-events: none;
}
/* Set the text colours for breadcrumbs */
.breadcrumb, .breadcrumb:before, .breadcrumb:last-child {
	color: #212121;
}
/* Special color for headers */
.header {
	color: #F44336;
}
/* Adding extra padding for nested lists */
.side-nav .collapsible-body li a {
	padding: 0 10px 0 60px;
}
/* Sepcial styling for white export buttons */
.btn:not(.waves-light) {
	background-color: #fff;
	color: #212121;
}
/* Animation rules for fading in elements */
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  
  -webkit-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  
  -webkit-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  
  -webkit-animation-duration:1s;
  animation-duration:1s;
}

.fade-in.one {
  
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.fade-in.two {
  
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fade-in.three {
  
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.fade-in.four {
  
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.position{
	position: relative;
}
/* Make the current page unclickable */
ul.pagination li.active {
	pointer-events: none;
}
/* Change padding for buttons on mobile */
@media only screen and (max-width: 600px) {
	.btn:not(.btn-floating) {
		padding: 0 1rem !important;
	}
}
/* Highlight the currently selected item in a materialize dropdown */
ul.dropdown-content:not(.multiple-select-dropdown) li.selected:not(.disabled) {
    background-color: #26a69a;

}
ul.dropdown-content:not(.multiple-select-dropdown) li.selected:not(.disabled) span {
    color: #fff;
}
/* Hack to make materialize dropdowns visible on mobile responsive tables. Makes the entire table grow with the dropdown */
@media only screen and (max-width: 992px) {
	table.responsive-table div.select-wrapper ul.dropdown-content {
		position: initial !important;
	}
}
/* Autocomplete list shouldn't make page grow */
.autocomplete-content {
	position: absolute;
}
/* Sizing for scan page charity list */
.vol-char-button h1, .vol-char-button h4, .vol-char-button h5 {
	margin: 0;
}
.vol-char-button td {
	padding: 0;
}
li.vol-char-button {
	padding-left: 10px !important;
}
.vol-char-button table > tbody > tr:first-child > td:first-child {
	padding-right: 10px;
}
/* Reduce page footer height */
footer.page-footer .footer-copyright {
	height: 45px;
	line-height: 45px;
}
footer.page-footer {
	padding-top: 10px;
}
footer div.row {
	margin-bottom: 0;
}
/* Reduce padding at the top of the page */
#welcome-title {
	margin: 0;
}
#charity-select-section {
	padding-top: 0;
}