/* Component styles */
.table-sticky-header tbody tr:nth-child(2n-1) {
    background-color: #f5f5f5;
    transition: all .125s ease-in-out;
}
.table-sticky-header tbody tr:hover {
    background-color: rgba(129,208,177,.3);
}

/* For appearance */
.sticky-enabled thead{
	z-index: 60;
}
.sticky-wrap {
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	width: 100%;
}
.sticky-wrap .sticky-thead,
.sticky-wrap .sticky-col,
.sticky-wrap .sticky-intersect {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	width: auto; /* Prevent table from stretching to full size */
}
	.sticky-wrap .sticky-thead {
		box-shadow: 0 0.25em 0.1em -0.1em rgba(0,0,0,.125);
		z-index: 59;
		width: 100%; /* Force stretch */
	}
	.sticky-wrap .sticky-intersect {
		display: inherit;
		z-index: 59;
	}
		.sticky-wrap .sticky-intersect th {
			background-color: #666;
			color: #eee;
		}
.sticky-wrap td,
.sticky-wrap th {
	box-sizing: border-box;
}

.sticky-thead .sort_alt_container{
	display: none;
}
.sticky-thead md-checkbox{
	display: none;
}
.sticky-thead .md-checkbox-column {
	padding-right: 0px!important;
}
