html, body {
	height: 100%;
}

body {
	background-color: #50545F;
	color: #b2b9bf;
}

h1 {
	/*font-size: 2rem;*/
}

h1 span.badge {
	font-size: 1rem;
}

h2 {
	/*font-size: 1.3rem;*/
}

.card {
	background-color: #272b34;
}

a.card {
	color: #fff;
}

a.card:hover {
	text-decoration: none;
	background-color: #23272f;
}

div.module-content {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}

div.module-content > div.row {
	margin-left: 15px;
	margin-right: 15px;
}

div.temperature {
	font-size: 2em;
	line-height: 45px;
}

div.tempMinMax {
	font-size: 0.7em;
	text-align: center;
	border-bottom: 1px solid #424752;
}

div.temperatureDetail {
	font-size: 0.7em;
	text-align: center;
}

.fc-daygrid-day.bg-success {
	color: #fff;
}

.fc .fc-day-other,
.fc .fc-day-disabled {
	background-color: #1f232a;
}

/*.fc .fc-day-other * {
	opacity: 0;
}*/

.fc .fc-toolbar-title {
	font-size: 1.3em;
}

.fc-theme-bootstrap5-shaded {
	background-color: #1f232a;
}

.fc .fc-list-table:hover td {
	background-color: transparent;
}

.fc-col-header-cell {
	background-color: #1f232a;
}

i.actionIcon {
	cursor: pointer;
}

a.logout {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	font-size: 1.5em;
	color: #b2b9bf;
}

span.daysCount {
	font-size: 10em;
}

#myWalkData_info {
	float: none;
	text-align: center;
	margin-bottom: 5px;
}

#myWalkData_paginate {
	float: none;
	text-align: center;
	border-top: 1px solid rgba(178, 185, 191, 0.5);
}

#myWalkData_paginate input.paginate_input {
	width: 40px;
	text-align: center;
}

#myWalkData_paginate #myWalkData_first,
#myWalkData_paginate #myWalkData_last {
	display: none;
}

#myWalkData_previous:active,
#myWalkData_previous:hover,
#myWalkData_next:active,
#myWalkData_next:hover {
	background: none;
	border: 1px solid transparent;
	box-shadow: none;
}

.walkingChartContainer {
	/*height: 300px;*/
}

#pageLoader {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #50545F;
	z-index: 1;
}

#pageLoader > div {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

/* Loading Animation */
div.loading {
	width: 8vmax;
	height: 8vmax;
	border-right: 4px solid #ffffff;
	border-radius: 100%;
	-webkit-animation: loadingSpinRight 800ms linear infinite;
	animation: loadingSpinRight 800ms linear infinite;
}

div.loading:before,
div.loading:after {
	content: "";
	width: 6vmax;
	height: 6vmax;
	display: block;
	position: absolute;
	top: calc(50% - 3vmax);
	left: calc(50% - 3vmax);
	border-left: 3px solid #ffffff;
	border-radius: 100%;
	-webkit-animation: loadingSpinLeft 800ms linear infinite;
	animation: loadingSpinLeft 800ms linear infinite;
}

div.loading:after {
	width: 4vmax;
	height: 4vmax;
	top: calc(50% - 2vmax);
	left: calc(50% - 2vmax);
	border: 0;
	border-right: 2px solid #ffffff;
	-webkit-animation: none;
	animation: none;
}

@-webkit-keyframes loadingSpinLeft {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(720deg);
	}
}

@keyframes loadingSpinLeft {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(720deg);
	}
}

@-webkit-keyframes loadingSpinRight {
	from {
		transform: rotate(360deg);
	}
	to {
		transform: rotate(0deg);
	}
}

@keyframes loadingSpinRight {
	from {
		transform: rotate(360deg);
	}
	to {
		transform: rotate(0deg);
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	h1 span.badge {
		font-size: 0.8rem;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 1.25rem;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	h1 span.badge {
		font-size: 1rem;
	}

	div.temperature {
		font-size: 3em;
		line-height: 45px;
	}

	div.tempMinMax {
		font-size: 1em;
		text-align: left;
		border-bottom: none;
	}

	div.temperatureDetail {
		text-align: left;
		font-size: 1em;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	h1 {
		/*font-size: 2rem;*/
	}

	h1 span.badge {
		font-size: 1.3rem;
	}

	h2 {
		/*font-size: 2rem;*/
	}

	div.temperature {
		font-size: 7em;
		line-height: 130px;
	}

	div.tempMinMax {
		font-size: 2.2em;
		border-bottom: 1px solid #424752;
		text-align: center;
	}
	div.temperatureDetail {
		font-size: 2.2em;
		text-align: center;
	}

	.col-fix-left {
		padding-left: 8px;
	}

	.col-fix-right {
		padding-right: 7px;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	
}

/* Specials */
@media screen and (max-width: 767px) {
	#myWalkData_paginate {
		margin-top: 0px;
	}
}