html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

.clear {
	clear: both;
}

.map-container {
	height: calc(100% - 95px);
	height: -moz-calc(100% - 95px);
	height: -webkit-calc(100% - 95px);
	width: calc(100% - 10px);
	width: -moz-calc(100% - 10px);
	width: -webkit-calc(100% - 10px);
	border: 3px solid #dadada;
	margin: 0 3px;
	position: relative;
}

#map {
	height: 100%;
	width: 100%;
}

.loader {
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	top: 0;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
}


#myProgress {
	position: absolute;
	bottom: 100px;
	width: 50%;
	left: 25%;
	background-color: #ddd;
	display: none;
}

#myBar {
	width: 100%;
	height: 50px;
	background-color: #4CAF50;
	text-align: center;
	color: white;
	line-height: 50px;
	font-size: 30px;
	overflow: hidden;
}

.loader img {
	margin-top: 10%;
}
.category-panel {
	position: absolute;
	bottom: 110px;
	width: 100%;
	text-align: center;
	margin: 0px 20px;
	width: calc(100% - 60px);
	width: -moz-calc(100% - 60px);
	width: -webkit-calc(100% - 60px);
}
.filter-panel {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
	margin: 0px 20px;
	width: calc(100% - 60px);
	width: -moz-calc(100% - 60px);
	width: -webkit-calc(100% - 60px);
}

.category-panel .filter-box,.filter-panel .filter-box {
	display: inline-block;
	padding: 3px 10px;
	border: 2px solid #dadada;
	background: #fafafa;
	margin: 1px 0px;
}

.category-panel .filter-box>div,.filter-panel .filter-box>div {
	display: inline-block;
	font-size: 12px;
}

.category-panel .filter-box input,.filter-panel .filter-box input {
	height: 10px;
	margin: 0;
}

.category-panel .filter-box img,.filter-panel .filter-box img {
	margin-right: 10px;
	height: 20px;
}

.controls {
	margin-top: 10px;
	border: 1px solid transparent;
	border-radius: 2px 0 0 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 32px;
	outline: none;
	position: absolute;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.lat-long {
	font-family: Roboto;
	font-size: 15px;
	font-weight: 300;
	position: absolute;
	top: 10px;
	height: 32px;
	left: 490px;
	width: 250px;
	border: none;
	padding: 0px 5px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.modal-content p {
	text-align: center;
	font-size: 20px;
}

.carrier-selection {
	text-align: center;
}

.carrier-selection #carrier {
	font-size: 20px;
}

#pac-input {
	background-color: #fff;
	font-family: Roboto;
	font-size: 15px;
	font-weight: 300;
	margin-left: 12px;
	padding: 0 11px 0 13px;
	text-overflow: ellipsis;
	width: 250px;
}

#pac-input:focus {
	border-color: #4d90fe;
}

.info .header {
	border-bottom: 2px solid #dadada;
	margin-bottom: 5px;
}

.info .header h3 {
	margin: 5px 0px;
}

.info .spacer {
	margin: 10px 0px;
}

.info div>label {
	font-weight: bold;
}

.page-title {
	width: 100%;
	text-align: center;
	height: 40px;
	padding: 13px 0px 5px 0px;
	background-color: #f9f9f9;
}

.page-footer {
	width: 100%;
	text-align: center;
	height: 20px;
	padding: 5px 0px 5px 0px;
	background-color: #f9f9f9;
}

.page-footer span {
	float: right;
	margin-right: 20px;
}

.page-footer a {
	float: left;
	margin-left: 20px;
}

.page-title h2 {
	margin: 0;
}

/* Model CSS */

/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	/* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	/* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}