@charset "utf-8";
/* CSS Document */
/* Basic Styles
-------------------------------------------------- */
body {
	/* Padding to prevent nav overlap with content */
	padding-top: 0px;
	padding-bottom: 20px;
}

/* Landing Page */
.my-title {
	text-align: center;
}

/* Login */
#login-form {
	margin:5% auto;
	width: auto;
	max-width:400px;
}

.signin-button {
    width: 45%;
}

#navform {
	padding: 4px 8px 0px 0px;
}

.navbar {
	background-color: #50B8B4;	
	margin-bottom: 0px;
}

.navbar-dark .navbar-nav .nav-link {
    color: lightgrey;
}

.navbar-dark .navbar-text {
    color: lightgrey;
}

.border-md-right {
	border-right: 1px solid lightgrey;
}

@media (max-width: 768px) {
	.border-md-right {border-right: none;}
}

@media (max-width: 500px) {
	#fadeloc {display: none;}	
}

.icontainer {
	width: auto;
	margin-left: auto;
	margin-right: auto; 	
	margin-top: 20px;
	max-width: 768px;
	padding: 0 15px;	
}

.container {
	width: auto;
	margin-left: auto;
	margin-right: auto; 	
	margin-top: 20px;
	max-width: 1100px;
	padding: 0 15px;	
}

.alnright { 
	text-align: right; 
}
  
.table {
	width: fixed;
	max-width: 768px;
	padding: 0 15px;
}

.table tbody tr.highlight td {
    background-color: #50B8B4;
    color: white; 
}

.center {
	margin-left: auto;
    margin-right: auto;
}

table th, td {
	white-space: nowrap !important;
}

.blank_row {
	height: 20px !important;
	background-color: #FFFFFF;
}

/* Sticky footer styles
-------------------------------------------------- */
.footer {
	background-color: #50B8B4;
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 30px;
}

.esp-muted{
	color: lightgrey;
	margin: -2px 20px;
	font-size: 12px;	
}

.text-muted {
	margin: -2px 20px;
	font-size: 12px;
}

.icon {
	width: 20px;
	height: 20px;
}

.small-img {
	width: 40px;
	height: auto;
}

.large-img {
	display: block;
	max-width: 50%;
	height: auto;
}

.dropdown-menu {
	right: 0 !important;
	left: auto !important;
}

.spacer {
	padding-top: 80px;
	padding-bottom: 40px;
}

.topspacer {
	padding-bottom: 20px;
}

.botspacer {
	padding-top: 10px;
}

.my-custom-scrollbar {
	position: relative;
	height: 400px;
	overflow: auto;
}

.table-wrapper-scroll-y {
	display: block;
}

.abs-center-x {
    position: absolute;
    margin: 5px 0px;
    left: 50%;
    transform: translateX(-50%);
}

.centerScr {
    width:100%;
    text-align:center;
}

#clock h3 {
	color: lightgrey;
	padding-top: 6px;
}

#user_avatar {
	opacity:0;
	position:absolute;
	z-index:9;
	width:240px;
	height:240px;
}

#button-img img { 
	position:absolute;
	z-index:-1;
}

/* Chart styles
-------------------------------------------------- */
.chart-container {
	width: 100%;
    height: 360px;
    margin: 0 auto;
}

.hchart-container {
	width: 100%;
    height: 500px;
    margin: 0 auto;
}

.info-container {
	width: 100%;
    height: 48px;
    margin: 0 auto;
    border-top: none;
    border-bottom: none;
}

canvas {
    margin-right: auto;
    margin-left: auto;
    display: block;
}

/* Card styles
-------------------------------------------------- */
.content {
	padding: 20px;
}

.cards {
	min-width: 310px;
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
	background-color: white;
	box-shadow: 2px 2px 12px 1px rgba(140,140,140,.5);
}

.dcard {
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	text-align: center;
	background-color: white;
	box-shadow: 2px 2px 12px 1px rgba(140,140,140,.5);
}

.hcard {
	height:100%;
	padding-top: 8px;
	padding-bottom: 8px;
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	text-align: center;
	background-color: white;
	box-shadow: 2px 2px 12px 1px rgba(140,140,140,.5);
}

.bcard {
	height:100%;
	padding-top: 4px;
	padding-bottom: 4px;
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	text-align: center;
	background-color: white;
	box-shadow: 2px 2px 12px 1px rgba(140,140,140,.5);
}

.card-title {
	padding-top: 10px;
	margin-left: auto;
	margin-right: auto; 
	font-size: 1.2rem;
	font-weight: bold;
	color: #034078;
}

.card-text { 
	font-size: 1.2rem;
	color: #787b80;
}

.reading {
	font-size: 1.8rem;
}

/* Timer styles
-------------------------------------------------- */
.base-timer_center {
	display: flex;
	justify-content: center;
}

.base-timer {
	position: relative;
	width: 180px;
	height: 180px;
}

.base-timer_svg {
	transform: scaleX(-1);
}

.base-timer_circle {
	fill: none;
	stroke: none;
}

.base-timer_path-elapsed {
	stroke-width: 10px;
	stroke: #ededed;
}

.base-timer_path-remaining {
	stroke-width: 10px;
	stroke-linecap: round;
	transform: rotate(90deg);
	transform-origin: center;
	transition: 1s linear all;
	fill-rule: nonzero;
	stroke: currentColor;
}

.base-timer_path-remaining.green {
	color: #50B8B4;
}

.base-timer_path-remaining.orange {
	color: orange;
}

.base-timer_path-remaining.red {
	color: red;
}

.base-timer_label {
	position: absolute;
	width: 180px;
	height: 180px;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
}
