/* summary reports container */
body#ViewWrapper-Timesheets > main > div#summary-report {
	position: fixed;
	z-index: 5;
	bottom: 0px;
	right: 0px;
	width: calc( 100% - 175px );
	height: 50px;
	text-align: center;

	background: rgb(205,205,205);

	transition: height 0.05s linear 0s, width 0.25s ease 0s;
}

	/* summary report container with noshell */
	body#ViewWrapper-Timesheets.noshell > main > div#summary-report {
		width: 100% !important;
	}

	/* weekly reports container when header/sidebar collapsed */
	body#ViewWrapper-Timesheets.header-collapsed > main > div#summary-report {
		width: calc( 100% - 45px );
	}

	/* container expanded */
	body#ViewWrapper-Timesheets > main > div#summary-report.expanded {
		height: 350px;
	}

		/* contents container with report container expanded */
		body#ViewWrapper-Timesheets > main > div#summary-report.expanded > div {
			min-height: 200px;
		}

			/* initial loading icon */
			body#ViewWrapper-Timesheets > main > div#summary-report.expanded > div > .fa-spin {
				width: 150px;
				height: 150px;
				margin: 50px;
				text-align: center;

				color: rgba(255,255,255,.2);
				font-size: 150px;
			}

	/* toggle button */
	body#ViewWrapper-Timesheets > main > div#summary-report > button#summary-report-expand-toggle {
		display: block;
		position: relative;
		width: 100%;
		height: 20px;

		text-align: center;
		background: rgb(0,155,170);

		transition: margin 0.05s linear 0s, height 0.05s linear 0s;
	}

		/* toggle button when summary panel expanded */
		body#ViewWrapper-Timesheets > main > div#summary-report.expanded > button#summary-report-expand-toggle {
			border-top: 3px solid rgb(205,205,205);
		}

		/* hover on button */
		body#ViewWrapper-Timesheets > main > div#summary-report > button#summary-report-expand-toggle:hover {
			background: rgb(0,176,193);
			cursor: pointer;
		}

		/* icon */
		body#ViewWrapper-Timesheets > main > div#summary-report > button#summary-report-expand-toggle:after {
			display: inline-block;
			margin-top: -36px;
			vertical-align: top;
			font-family: 'FontAwesome';
			font-style: normal;

			font-size: 64px;
			color: rgb(205,205,205);
			height: 20px;
		}
			/* Chrome adjustment */
			body#ViewWrapper-Timesheets.is-browser-chrome > main > div#summary-report > button#summary-report-expand-toggle:after {
				margin-top: -30px;
			}

		/* icon when collapsed */
		body#ViewWrapper-Timesheets > main > div#summary-report > button#summary-report-expand-toggle:after {
			/* fa-caret-up */
			content: "\f0d8";
		}

		/* icon when expanded */
		body#ViewWrapper-Timesheets > main > div#summary-report.expanded > button#summary-report-expand-toggle:after {
			/* fa-caret-down */
			content: "\f0d7";
			margin-top: -10px;
			margin-left: -20px;
			font-size: 53px;
			color: rgb(0,155,170);
		}
			/* icon when expanded */
			body#ViewWrapper-Timesheets.is-browser-chrome > main > div#summary-report.expanded > button#summary-report-expand-toggle:after {
				margin-top: -30px;
			}

			/* icon when expanded with button hover */
			body#ViewWrapper-Timesheets > main > div#summary-report.expanded > button#summary-report-expand-toggle:after {
				color: rgb(205,205,205);
				margin-top: -35px;
			}

		/* main heading */
		body#ViewWrapper-Timesheets > main > div#summary-report > h3 {
			display: block;
			margin-top: 10px;
			margin-bottom: 25px;

			font-family: Open Sans, Calibri, Arial;
			font-size: 12px;
			font-weight: bold;
			text-align: center;
			text-transform: uppercase;
		}
			/* main heading when container expanded */
			body#ViewWrapper-Timesheets > main > div#summary-report.expanded > h3 {
				display: none;
			}

		/* primary data container to populate */
		body#ViewWrapper-Timesheets > main > div#summary-report > div {
			display: block;
			text-align: left;
			overflow-y: auto;
			height: 320px;
		}

			/* nav buttons container */
			body#ViewWrapper-Timesheets > main > div#summary-report > div > nav#section-tabs {
				display: block;
				position: fixed;
				z-index: 2;
				margin-top: 0px;
				margin-left: 0px;
				height: 25px;
				width: 100%;

				background-color: rgb(0,155,170);
				border-bottom: 1px solid rgba(0,0,0,.75);

				font-size: 0px; /* collapse spacing */
			}
				/* nav buttons */
				body#ViewWrapper-Timesheets > main > div#summary-report > div > nav#section-tabs > button {
					display: inline-block;
					padding: 4px 5px 5px 5px;
					margin: 0px 0px 0px 5px;
					text-align: center;

					font-family: Open Sans, Calibri, Arial;
					font-size: 12px;
					color: rgba(0,0,0,.65);

					background-color: rgb(185,185,185);
					border: 1px solid rgba(0,0,0,.75);
					border-bottom: 0px;

					cursor: pointer;
				}
					/* hover on nav button */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > nav#section-tabs > button:hover {
						background-color: rgb(185,195,205) !important;
					}

					/* button for active tab */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > nav#section-tabs > button.active {
						height: 26px;
						color: black;
						background-color: rgb(185,185,205);
					}

					body#ViewWrapper-Timesheets > main > div#summary-report > div > nav#section-tabs > button:not(.active) {
						height: 26px;
						background-color: rgba(185,185,185,.75);
						border: 1px solid rgba(0,0,0,.5);
						border-bottom: 1px solid rgba(0,0,0,.75);
					}

			/* report section */
			body#ViewWrapper-Timesheets > main > div#summary-report > div > section {
				display: none;
				vertical-align: top;
				font-size: 0px; /* collapse spacing */
			}
				/* section when shown */
				body#ViewWrapper-Timesheets > main > div#summary-report > div > section.show {
					display: block;
				}

				/* report table */
				body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table {
					font-family: Roboto Mono, Courier New;
				}
					/* all cells in all tables */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr:hover td {
						box-shadow: -1px 0px 0px rgba(0,0,0,.15);
					}

					/* header table */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table.header {
						position: fixed;
						margin-top: 26px;
						z-index: 1;
						border-bottom: 1px solid rgba(0,0,0,.5);
						border-right: 1px solid rgba(0,0,0,.15);
						border-collapse: unset;
					}
						/* header table gap cell */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table.header tr > th.gap {
							width: 542px;
						}

					/* schedule cells */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table.no-schedule tr > .schedule {
						display: none;
					}

					/* hours group heading */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .alt1 {
						text-align: center;
						background: rgb(165,165,195);
					}
					/* hours group heading */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .alt2 {
						text-align: center;
						background: rgb(185,185,205);
					}

					/* report table header */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > th {
						padding: 2px 3px 2px 3px;
						height: 15px;
						vertical-align: middle;

						text-align: center;
						font-size: 12px;
						color: rgba(0,0,0,.75);
						font-weight: bold;
					}

					/* overtime header */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > th[colspan].overtime {
						border-left: 1px solid black;
					}

				/* data table */
				body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table.data {
					margin-top: 84px;
					display: inline-block;
					vertical-align: top;

					border-bottom: 1px solid rgba(0,0,0,.15);
					border-right: 1px solid rgba(0,0,0,.15);
				}

					/* alternate top offset for sections with one-row table headers */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table.data.header-one-row {
						margin-top: 46px;
					}

					/* report table data */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > td {
						padding: 5px 3px 5px 3px;
						height: 15px;
						vertical-align: top;

						font-size: 13px;
						font-weight: normal;
					}

						/* <td> containing multi-line data */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > td.multi-line {
							line-height: 1.5;
						}

							/* overflow containers */
							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > * > div.overflow-container {
								display: block;
								position: relative;
								width: inherit;

								overflow: hidden;
								text-overflow: ellipsis;
								white-space: nowrap;
							}

						/* hover on row */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr:not(.header):hover > td {
							background: rgb(150,150,175) !important;
							cursor: default;
						}

						/* out-of-class cell */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > td.out-of-class {
							text-align: center;
							color: rgba(0,0,0,.65);
							font-style: italic;
						}

						/* centered */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .center {
							text-align: center;
						}

						/* name */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .name {
							width: 165px;
							text-align: left !important;
							overflow: hidden;
						}

						/* seniority & employment cells */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .Seniority-EmploymentType {
							width: 45px;
							text-align: left !important;
							overflow: hidden;
						}

						/* non-hours cells */
						/* body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > td:not(.hours) {
							padding: 2px;
						} */

						/* auto-width cells */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr th.overflow {
							overflow: hidden;
							text-overflow: ellipsis;
						}

						/* hours cells */
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .hours {
							width: 50px;
							color: black;
						}

							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > td.hours {
								text-align: right;
							}

							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .hours.wide {
								width: 75px;
							}

							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .hours.left {
								text-align: left !important;
							}

							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .hours.center {
								text-align: center !important;
							}

							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .hours.right {
								text-align: right !important;
							}

							/* when hours are zero */
							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .hours.zero {
								color: rgba(0,0,0,.35);
							}

						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .text {
							width: 165px;
						}
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .text-short {
							width: 90px;
						}
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .date {
							width: 125px;
						}
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .time {
							width: 75px;
						}
							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > td.time {
								text-align: right;
							}
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .icon {
							text-align: center;
							width: 25px;
						}
							body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .icon > .fa {
								line-height: 1.2;
								height: 19px;
							}
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .text-medium {
							width: 200px;
						}
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .text-long {
							width: 400px;
						}

						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table.data.multiline-cells td {
							line-height: 1.5;
						}

					/* visually alternating rows */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr:not(.header):nth-of-type(odd) > td {
						background-color: rgb(185,185,195);
					}

					/* employee number */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .EmployeeNumber {
						width: 32px;
						text-align: left !important;
					}

					/* overtime class */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr > .class.overtime {
						text-align: left;
						width: 150px;
					}

					/* hilite binding */
					body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr.summaryReportsUI-bindHilite > td {
						background-color: rgb(50,75,150) !important;
						color: white !important;
					}
						body#ViewWrapper-Timesheets > main > div#summary-report > div > section > table tr.summaryReportsUI-bindHilite > td > .fa {
							color: white !important;
						}