html, body {
	padding: 0;
	margin: 0;
	font-family: Roboto, Arial, sans-serif;
	overflow: hidden;
	color:#000;
}

h1, h2, h3 {
	font-family: 'Google Sans',Roboto, Arial,sans-serif;
	margin: 0;
}
ul {
	list-style: none;
	padding: 0;
}
* {
	/* -webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease; */
}

.leaflet-touch .leaflet-sidebar > .leaflet-control {
	padding:0px;
}
.box {
	margin: 0 10px;
	border-bottom: 1px solid silver;
}

.leaflet-sidebar .close {
	z-index: 999 !important;
}
.img-base {
	width: 100%;
	height: 200px;
	background: silver;
	background: center center no-repeat;
	background-size: cover;
}

.box.title {
	margin: 0 55px 0 10px;
}
.box.title h1 {
	font-weight: normal;
	font-weight: normal;
	line-height: 1em;
	padding: 10px 0px;
}
.box.data {
	display: flex;
	flex-flow: wrap;
	padding: 10px 0;
	justify-content: space-between;
}
.box.data>div {
	padding-right: 10px;
}
.box.desc {
	font-size: 1.2em;
	line-height: 1.2em;
}

.box.alert {
	background: #b0bec5;
	margin: 10px;
	padding: 8px;
	border-radius: 8px;
	display: flex;
}
	.box.alert .col-icon {
		width: 50px;
		font-size: 1.5em;
		margin-right: 10px;
		text-align: center;
		border-right: 1px solid black;
	}
	.box.alert .col-data {
		width: calc(100% - 61px);
	}
		.box.alert .ok {
			width: 95px;
			display: flex;
			text-align: center;
			justify-content: center;
			font-size: 1.2em;
			padding: 5px 7px 6px 7px;
			margin-left: 15px;
			align-items:center;

			background: #212121;
			color: #FAFAFA;
			text-decoration: none;
			border-radius: 4px;
			box-shadow:  0 0 0 1px rgba(0,0,0,.15) inset, 0 0 6px rgba(0,0,0,.2) inset;
		}
		.box.alert .ok:hover {
			box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.4);
		}
.box.alert.empty-zone {
	background: #FFC107;
}
.box.alert.on-my-way {
	background: #bbdefb;
}
	.box.alert h2 {
		line-height: 1em;
		padding-bottom: 5px;
	}
	.box.alert p {
		margin: 5px 0;
	}
	.box.alert p.ask {
		font-weight: 200;
		text-align: left;
		font-size: 1.1em;
		padding: 4px 0 0 0;
		margin: 0;
	}
	.box.alert hr {
		border: 0;
		margin-bottom: 13px;
		border-bottom: 1px solid black;
	}
	.box.alert a {
		color: #212121;
	}
	.box.alert .btns {
		display: flex;
		justify-content: space-around;
	}

.box.info {
	border: 0;
}

.box .flex {
	display: flex;
	text-align: center;
	justify-content: space-around;
}

a.btnc,
a.edit {
	/* height: 40px;
	width: 40px;
	border-radius: 100px;
	display: inline-block;
	line-height: 40px;
	text-align: center;
	font-size: 15px;
	margin: 5px calc((100% - 30px) / 2);
	border: 1px solid #1976D2;
	color: #1976D2; */
	padding: 0 10px;
	border-radius: 100px;
	display: inline-block;
	line-height: 30px;
	text-align: center;
	font-size: 11px;
	text-decoration: none;
	border: 1px solid #1976D2;
	color: white;
	background: #1976D2;
}

a.btnc:hover {
	color: #1565c0;
	background: white;
	box-shadow: 0 0 10px grey;
}
	a.btnc:hover * {
		color: #1565c0;
	}

.box.people-container {
	display: flex;
	flex-flow: nowrap;
	align-items: stretch;
	overflow: auto;
	width: calc(100% - 20px);
	min-height: 90px;
}
	.people-container .day {
		border-left: 2px solid #eee;
		padding-left: 4px;
		padding-right: 20px;
		margin: 4px 0 4px 4px;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
	}
		.people-container .day h3 {
			background: white;
			margin-left: -10px;
		}

.person-stat {
	display: flex;
	flex-flow: nowrap;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: flex-end;
	min-height: 90px;
}
	.person-stat li {
		margin: 4px 1px 25px 0;
	}
		.person-stat div {
			background: #9fa8da;
			padding: .5px;
			width: 20px;
			display: flex;
			flex-flow: column;
			justify-content: flex-end;
			-webkit-border-radius:3px 3px 0 0;
			-moz-border-radius:3px 3px 0 0;
			border-radius:3px 3px 0 0;
		}
		.person-stat li.now div {
			padding-top: 5px;
			animation:livebar 2.5s ease-in-out infinite;
			background-image:-webkit-linear-gradient(#f50057 30%,#ff80ab 70%);
			background-size:100% 300%;
		}
			.person-stat span {
				line-height: 20px;
				display: block;
				text-align: center;
			}
			.person-stat span.time {
				display: none;
				border-left: 1px solid silver;
				margin-bottom: -20px;
				margin-left: -2px;
				padding-left: 3px;
				font-size: 10px;
			}
			.person-stat li:nth-child(2n+0) span.time {
				display: block;
			}

@-webkit-keyframes livebar {
	0%{
		background-position:0 100%;
	}
	55%,70%{
		background-position:0 0;
	}
	100%{
		background-position:0 100%;
	}
}
/*
#full {
	position: absolute;
	top: 0;
	bottom:0;
	right:0;
	left:0;
}

#map {
	height: 100%;
}

#sidemap {
	visibility: hidden;
	display: none;
	transition: transform 0.3s, visibility 0s 0.3s;
	color: #666;
	background: #fff;
	box-shadow: 0 0 6px rgba(0,0,0,0.3);
	outline: none;
	font-size: 14px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}
	#full.show {
		display: flex;
	}

	#full.show #map {
		width: calc(100vw - 360px);
	}

	#full.show #sidemap {
		height:100vh;
		width: 360px;
		max-width: 90%;
		visibility: visible;
		display: block;
	}

#loader {
	display: none;
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('loader.gif') center center no-repeat rgba(255,255,255,0.5);
}


#close-side {
	font-size: 25px;
	float: right;
	background: white;
	height: 40px;
	width: 40px;
	text-align: center;
	border-radius: 0 0 0 25px;
	line-height: 35px;
	cursor: pointer;
	margin-left: -40px;
	z-index: 1;
	position: relative;
}
#content-sidebar {
	height: 100%;
	overflow: auto;
}
	#content-sidebar h1 {
		color:black;
	}
	#content-sidebar p {
		margin: 0;
	}

	#content-sidebar .box {
		padding: 15px 24px;
		margin:  0;
		border-bottom: 1px solid #eee;
	}

	#content-sidebar .box.title {
		padding: 16px;
		margin: 0 0 10px 0;
		border-bottom: 1px solid #eee;
	}

	#content-sidebar .title h1 {
		font-size: 1.375rem;
		font-weight: 400;
		line-height: 1.75rem;
		margin-bottom: 10px;
	}
	#content-sidebar .title .fas {
		height: 17px;
		float: left;
		width: 20px;
		text-align: center;
	}
	#content-sidebar a.route,
	#content-sidebar a.edit {
		height: 40px;
		width: 40px;
		border-radius: 100px;
		display: inline-block;
		line-height: 40px;
		text-align: center;
		font-size: 15px;
		margin: 5px calc((100% - 30px) / 2);
		border: 1px solid #1976D2;
		color: #1976D2;
	}

	#content-sidebar a.route:hover {
		color: white;
		background: #1565c0;
		box-shadow: 0 0 10px grey;
	}
		#content-sidebar a.route:hover * {
			color: white;
		}
.img-base {
	width: 100%;
	height: 200px;
	background: silver;
	background: center center no-repeat;
	background-size: cover;
}


ul.flex {
	padding: 0;
	display: flex;
	list-style: none;
	align-items: stretch;
	justify-content: space-between;
}
	ul.flex li {
		margin-right: 5px;
		-border-right: 1px solid #eee;
	}
	ul.flex.center li {
		text-align: center;
	}
	ul.flex li:last-child {
		margin: 0;
		-border-right: 0px solid transparent;
	}
		ul.flex li .fas {
			margin-bottom: 10px;
		}


	#content-sidebar .stats ul {
		margin: 0;
		padding: 0;
		list-style: none;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

#content-sidebar .text {
	padding: 10px 0;
	font-size: 1.1em;
}*/
